/* @font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-brands-400.woff2') format('woff2');
}
   */
   @import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
:root{
    --white: #ffffff;
    --black: #000000;
    --text: #5C5C5C;
    --primary-color: #8C0255;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body{
    /* font-family: "MierB"; */
    font-family: "Onest", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    font-weight: 400;
    scroll-behavior: smooth;
}
a,.btn,button,.button,img{
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
a {
    text-decoration: none !important;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.form-control:focus,
.form-select:focus,
.btn-close:focus{
    border-color: var(--primary-color) !important;
    outline: 0;
    box-shadow: unset;
}

/* scrollbar styling */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* display: none; */
}  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
    border-radius: 10px;
}
@-moz-document url-prefix() {
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) transparent;
    }
}
::selection {
    color: #fff;
    background: var(--primary-color);
    /* background: transparent; */
}
.header {
    position: sticky;
    z-index: 99;
    top: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1.5px solid #f0f0f0;
}
.navScrolled {
    -webkit-box-shadow: 0px 4px 24px 0px #5D59490F;
    box-shadow: 0px 4px 24px 0px #5D59490F;
    animation: scrollSticky 0.5s ease-out;
    -webkit-animation: scrollSticky 0.5s ease-out;
}
@keyframes scrollSticky {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.header .navbar-nav li .nav-link {
    position: relative;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.header .navbar-nav li .nav-link span{
    padding-left: 8px;
}
.header .navbar-nav {
    gap: 12px;
    align-items: center;
}
.header .navbar-nav li .nav-link:hover,
.header.navScrolled .navbar-nav li .nav-link:hover,
.header .navbar-nav li .nav-link.active {
    color: var(--primary-color);
}
.comman-py{
    padding: 70px 0;
}
.navbar-toggler{
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.navbar-toggler:focus{
    box-shadow: unset;
}
.offcanvas{
    background-color: var(--white);
    transition: transform 0.6s ease;
}
.cl_link{
    color: var(--primary-color);
    font-weight: 500;
}
.cl_link:hover{
    color: #000;
}
.cl_link:hover img {
  filter: grayscale(1);
}
.cl_link_main .cl_link:not(:last-child){
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1.5px solid #FBCCE9;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.primary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 30px;
    border: 1px solid var(--black, #000000);
    color: var(--white, #FFFFFF);
    background-color: var(--black, #000000);
    min-width: 160px;
    line-height: normal;
}
.primary-btn:hover{
    color: var(--black, #000000);
    /* background-color: var(--white, #FFFFFF); */
    background-color: transparent;
}
.primary-btn2{
    color: var(--black, #000000);
    /* background-color: var(--white, #FFFFFF); */
    background-color: transparent;
}
.primary-btn2:hover{
    color: var(--white, #FFFFFF);
    background-color: var(--black, #000000);
}
.primary-color-btn{
    color: var(--primary-color, #8C0255);
    border-color: var(--primary-color, #8C0255);
    background-color: var(--white, #FFFFFF);
}
.primary-color-btn:hover{
    color: var(--white, #FFFFFF);
    background-color: var(--primary-color, #8C0255);
}
.primary-btn-w{
    border-color: var(--white, #FFFFFF);;
    color: var(--primary-color, #8C0255);
    background-color: var(--white, #FFFFFF);
}
.primary-btn-w:hover{
    color: var(--white, #FFFFFF);
    background-color: transparent;
}
header .primary-btn{
    font-size: 16px;
    min-width: fit-content;
    padding: 7px 25px;
    font-weight: 500;
    margin-left: 10px;
}
.custom-dropdown{
    position: relative;
}
.custom-dropdown .dropdown-menu{
    min-width: 230px;
    border: none;
    box-shadow: 0px 15px 50px 0px rgb(82 63 105 / 15%);
}
.custom-dropdown .dropdown-menu .dropdown-item{
    padding: 11px 30px;
    color: var(--black, #000000);
}
.custom-dropdown:hover .dropdown-menu{
    display: block;
}
.custom-dropdown .nav-link i,.custom-dropdown .nav-link svg{
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.custom-dropdown:hover .nav-link i,.custom-dropdown:hover .nav-link svg{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.custom-dropdown .dropdown-item.active,.custom-dropdown .dropdown-item:active{
    color: var(--white, #FFFFFF);
    background-color: var(--primary-color, #8C0255);
}
.mobile-sidebar .nav-item{
    width: 100%;
}
.mob-collapse{
    list-style-type: disc;
    padding-left: 25px;
    padding-top: 8px;
}
.mob-collapse li:not(:last-child){
    margin-bottom: 10px;
}
.mob-collapse li a{
    display: flex;
    color: var(--black, #000000);
}
.mob-collapse li a.active{
    color: var(--primary-color, #8C0255);
}

/*============|| home banner styling start ||============*/
.home_section{
    background-image: url('../img/home_banner_bgimg_1.png'), url('../img/home_banner_bgimg_2.png'), url('../img/home_banner_bgimg_3.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0% 122%, 100% 0%, 100% 88%;
}
.home_section .home_left {
    top: -70px;
    position: relative;
}
.title{
    font-weight: 600;
    color: var(--primary-color, #8C0255);
    font-family: "Amiri";
}
.h1{
    font-size: 68px;
    line-height: 70px;
}
.home_left p{
    font-size: 24px;
    font-weight: 300;
    color: #252525;
}
.home_left p strong{
    font-weight: 700;
    color: var(--primary-color, #8C0255);
}
.home_right_aniimg{
    position: absolute;
    bottom: 24px;
    left: 24px;
    -webkit-animation: up_down 1s infinite  alternate;
    animation: up_down 1s infinite  alternate;
}
@-webkit-keyframes up_down {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes up_down {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
p{
    color: var(--text, #5C5C5C);
}
/*============|| home banner styling end ||============*/

/*============|| Shipping/Shipping/Payment styling start ||============*/
.ssp_section_inner{
    padding: 22px 40px;
    background-color: var(--primary-color, #8C0255);
}
.ssp_cont h2{
    font-size: 26px;
    font-family: "Amiri";
}
.ssp_cont p{
    color: #ffffffb3;
}
.ssp_inner .col:not(:last-child){
    border-right: 1px solid #e5e5e54d;
}
/*============|| Shipping/Shipping/Payment styling end ||============*/

/*============|| category styling start ||============*/
.heading_title{
    font-size: 44px;
    font-family: "Amiri";
    font-weight: 600;
    color: var(--primary-color, #8C0255);
}
.heading_box p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 12px;
}
.heading_text{
    font-size: 20px;
    color: var(--text, #5C5C5C);
}
.mb-60{
    margin-bottom: 60px;
}
.category_img_box{
    height: 100%;
    padding: 15px;
    border: 1px solid #E3E3E3
}
.category_img{
    padding: 30px;
    background-color: #EEEEEE;
}
.category_swiper h2{
    font-size: 24px;
    font-weight: 500;
    color: #333333;
}
.category_img_box:hover .category_img img{
    transform: scale(1.04);
}
.category_swiper .swiper-slide{
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.swiper-button-next,
.swiper-button-prev{
    top: 42%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: var(--white, #FFFFFF);
    background-color: var(--primary-color, #8C0255);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: 1;
    color: #999999;
    background-color: #DFDFDF;
}
.swiper-button-next:after,
.swiper-button-prev:after{
    font-family: 'FontAwesome';
    /* font-family: 'Font Awesome 6 Free'; */
    font-size: 20px;
}
.swiper-button-next:after{
    content: '\f061';
}
.swiper-button-prev:after{
    content: '\f060';
}
.swiper_main .swiper-button-next{
    right: -30px;
}
.swiper_main .swiper-button-prev{
    left: -30px;
}
/*============|| category styling end ||============*/

/*============|| founded styling start ||============*/
.founded_section{
    background-image: url('../img/founded_bg_1.png'), url('../img/founded_bg_2.png');
    background-size: 10%;
    background-repeat: no-repeat;
    background-position: 0% 0%, 100% 100%;
    background-color: #B92765;
    padding: 100px 0 !important;
}
.founded_box h2{
    font-size: 44px;
    line-height: 80px;
    font-weight: 400;
}
.medicine{
    position: relative;
    bottom: -15px;
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 20px;
    background-color: #D23E7D;
}
/*============|| founded styling end ||============*/

/*============|| Our Range styling start ||============*/
.our_range_section{
    background-color: #FFF8FC;
}
.range_box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: #F5E8F0;
}
.range_img{
    padding: 30px 30px 10px;
    height: 100%;
    min-height: 300px;
    max-height: 300px;
}
.range_cont{
    padding: 20px;
}
.range_cart{
    padding: 6px 14px;
    padding-right: 6px;
    border-radius: 40px;
    background-color: var(--white, #FFFFFF);
}
.range_left h2{
    font-size: 12px;
    font-weight: 600;
    color: #333333;
}
.range_left p{
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color, #8C0255);
}
.range_cart .range_left p {
  line-height: 16px;
}
.range_right{
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color, #8C0255);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.range_right::before{
    font-size: 14px;
    position: absolute;
    content: attr(data-text);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #FFFFFF);
    background-color: var(--primary-color, #8C0255);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.range_right:hover::before{
    opacity: 1;
    visibility: visible;
}
.range_box:hover .range_img img{
    transform: scale(1.04);
    -webkit-transform: scale(1.04); 
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);    
}
/*============|| Our Range styling end ||============*/

/*============|| Wellbeing styling start ||============*/
.purple-color{
    color: #5714AA;
}
.wellbeing_main{
    background-image: url('../images/new-img/wellbeing_bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 801px;
}
.wellbeing_box h2{
    font-size: 26px;
    font-family: "Amiri";
    font-weight: 600;
    color: var(--black, #000000);
    text-transform: uppercase;
}
.wellbeing_box p{
    font-size: 20px;
    color: var(--text, #5C5C5C);
}
.honey_bee1,
.honey_bee2,
.honey_bee3,
.honey_bee4{
    position: relative;
}
.honey_bee1,
.honey_bee2,
.honey_bee3,
.honey_bee4{
    position: absolute;
}
.honey_bee1 {
    top: 10px;
    right: -50%;
    width: 50%;
}
.honey_bee3 {
    bottom: -77%;
    left: -28%;
    width: 55%;
}
.honey_bee2 {
    top: -38%;
    right: -30%;
    width: 51%;
}
.honey_bee4 {
    top: -38%;
    left: -47%;
    width: 80%;
}
/*============|| Wellbeing styling end ||============*/

/*============|| Picks styling start ||============*/
.picks_section{
    background-image: url('../img/picks_bg_4.png'), url('../img/picks_bg_1.png'), url('../img/picks_bg_2.png'), url('../img/picks_bg_3.png');
    background-size: 10%, 7%, 8%, 10%;
    background-repeat: no-repeat;
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
    background-color: var(--primary-color, #8C0255);
}
.picks_section .heading_box p{
    color: #ffffffb3;
}
.picks_box {
    display: flex;
    align-items: flex-start;
    justify-content: end;
}
.picks_box .picks_cont{
    min-width: 325px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff4d;
}
.picks_box .picks_cont h2{
    font-size: 24px;
    font-weight: 600;
    color: var(--white, #FFFFFF);
}
.picks_box .picks_cont p{
    color: #ffffffb3;
}
.picks_box .picks_img{
    position: relative;
    top: 38px;
    flex-shrink: 0;
    width: 150px;
}
.picks_main .picks_box:nth-child(2){
    margin-right: 190px;
    margin-top: -190px;
}
.picks_main .picks_box:nth-child(3){
    margin-right: 360px;
    margin-top: -90px;
}
.picks_section .primary-btn:hover{
    color: var(--white);
    border-color: var(--white);
}
/*============|| Picks styling end ||============*/

/*============|| Expert styling start ||============*/
.expert_section{
    background: linear-gradient(180deg, #FFFFFF 0%, #FFE3EB 100%);
}
/*============|| Expert styling end ||============*/

/*============|| Makes Us Different styling start ||============*/
.makes_us_different_section{
    background-image: url('../img/mud_bg_1.png'), url('../img/mud_bg_2.png'), url('../img/mud_bg_3.png'), url('../img/mud_bg_4.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 3% 14%, 100% 0%, 0% 100%, 96% 90%;
    background-color: #B78727;
}
.makes_us_different_section .heading_box p{
    color: #ffffffb3;
}
.brown-color{
    color: #573B03;
}
.mud_img{
    width: 75px;
    height: 75px;
    background-color: #FAD17F;
    flex-shrink: 0;
}
.mud_cont h2{
    font-size: 25px;
    font-weight: 600;
    color: var(--white, #FFFFFF);
}
.mud_cont p{
    font-size: 19px;
    color: #ffffffb3;
    font-weight: 300;
}
.makes_us_different_line::before,
.makes_us_different_line::after{
    position: absolute;
    content: '';
    background-color: #986C14;
}
.makes_us_different_line::before{
    width: 100%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}
.makes_us_different_line::after{
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.makes_us_different_box {
    padding: 30px;
}
/*============|| Makes Us Different styling end ||============*/

/*============|| Collection styling start ||============*/
.collection_swiper_main{
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    max-width: 1800px;
    margin: 0 auto;
}
.collection_swiper .collection_img_box{
    background-color: #F5F5F5;
    border-radius: 200px;
    max-width: 475px;
    margin: auto;
    padding: 110px 0;
    height: 100%;
}
.collection_swiper .swiper-slide h2{
    font-size: 28px;
    font-family: "Amiri";
    font-weight: 600;
    color: var(--black, #000000);
}
.collection_swiper .swiper-slide p{
    font-size: 18px;
}
.collection_swiper .swiper-slide{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    padding: 50px 0;
}
.collection_swiper .swiper-slide a:hover .collection_img img{
    transform: scale(1.04);
    -webkit-transform: scale(1.04); 
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);    
}
.collection_swiper .swiper-slide:not(:last-child)::before{
    position: absolute;
    content: '';
    top: 0;
    right: -14px;
    width: 1px;
    height: 100%;
    background-color: #E3E3E3;
}
.collection_swiper_main .swiper-button-next{
    right: 30px;
}
.collection_swiper_main .swiper-button-prev{
    left: 30px;
}
.collection_swiper_main .swiper-button-next,
.collection_swiper_main .swiper-button-prev{
    top: 40%;    
}
/*============|| Collection styling end ||============*/

/*============|| newsletter styling start ||============*/
.newsletter_main{
    background-image: url('../img/newsletter_bg_1.png'), url('../img/newsletter_bg_2.png');
    background-size: 9%, 13%;
    background-repeat: no-repeat;
    background-position: 0% 0%, 100% 100%;
    background-color: #FFDAE4;
    padding: 80px;
}
.newsletter_main .heading_box p{
    color: #967180;
}
.newsletter_main .form-grp{
    max-width: 450px;
    margin: auto;
}
.newsletter_main .form-control{
    padding: 14px 25px;
    border-radius: 30px;
    border: unset;
    padding-right: 150px;
}
.newsletter_main .primary-btn{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    min-width: auto;
    padding: 14px 25px;
    font-size: 16px;
}
.newsletter_main .primary-btn:hover{
    background: #fff;
}
.form-control::placeholder{
    color: #9D9D9D;
}
section.newsletter_section {
    padding-bottom: 110px;
}
.product_gallery {
    max-height: 600px;
}
.product_gallery img {
    height: 100%;
    object-fit: contain;
}
/*============|| newsletter styling end ||============*/

/*============|| footer styling start ||============*/
.footer{
    background-color: #AD1357;
}
.footer_logo_box p,
.footer_link_box p{
    color: #ffffffcc;
    font-weight: 300;
}
.footer_social_list li .footer_social_link{
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff4d;
    color: var(--white, #FFFFFF);
}
.footer_social_list li .footer_social_link:hover{
    color: var(--primary-color, #8C0255);
    background-color: var(--white, #FFFFFF);
}
.footer_link_box h2{
    font-size: 24px;
    font-weight: 500;
    font-family: "Amiri";
    color: var(--white, #FFFFFF);
}
.footer_link_list li:not(:last-child) {
    margin-bottom: 12px;
}
.footer_link_list li a{
    font-weight: 300;
    color: #ffffffcc;
}
.footer_link_list li a:hover{
    color: #9CCA0A;
}
.footer_link_box {
    margin-top: 60px;
}
.footer_bottom{
    padding: 15px 0;
    border-top: 1px solid #ffffff4d;
}
.footer_bottom p {
    font-size: 15px;
}
.footer_store_list li a{
    display: inline-flex;
}
/*============|| footer styling end ||============*/

/*============|| Product Listing styling start ||============*/
.sort_box .select2-container .select2-selection--single{
    height: auto;
    border-radius: 30px;
    border-color: var(--text, #5c5c5c);
}
.sort_box .select2-container .select2-selection--single .select2-selection__rendered{
    padding: 10px 15px 8px 15px;
}
.sort_box .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: normal;
    color: #5c5c5c;
}
.select2-container--open .select2-dropdown {
    top: 6px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.sort_box .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.sort_box .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.select2-dropdown{
    border: unset;
    padding: 15px;
    padding-right: 5px;
    border-radius: 10px;
    z-index: 6;
    box-shadow: 0px 0px 8px 0px #00000021;
}
.select2-container--default .select2-results>.select2-results__options{
    padding-right: 10px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected{
    background-color: transparent;
    color: var(--primary-color, #8C0255);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
    right: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: relative;
    border: unset;
    margin: 0;
    left: 0;
    top: 3px;
    line-height: 1;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b::after {
    content: '\f107';
    font-family: 'FontAwesome';
    border: none;
    line-height: 1;
    vertical-align: unset;
}
.filter_box button{
    background-color: transparent;
    padding: 7px 15px;
    border-radius: 30px;
    border: 1px solid var(--text, #5C5C5C);
    color: var(--text, #5C5C5C);
}
.filter_modal .modal-content{
    border-radius: 40px;
    padding: 30px;
}
.filter_modal .modal-title{
    font-size: 30px;
    font-family: "Amiri";
    font-weight: 600;
    color: var(--primary-color, #8C0255);
}
.filter_selected_box{
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
}
.filter_selected{
    padding: 5px 20px;
    border-radius: 20px;
    color: var(--primary-color, #8C0255);
    border: 1px solid var(--primary-color, #8C0255);
    line-height: normal;
}
.remove_filter_selected{
    cursor: pointer;
}
.filter_link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    border-radius: 20px;
    color: var(--text, #5C5C5C);
    line-height: normal;
    border: 1px solid var(--text, #5C5C5C);
}
.filter_link.active{
    color: var(--primary-color, #8C0255);
    border-color: var(--primary-color, #8C0255);
}
.filter_box .filter_box_main:not(:last-child){
    margin-bottom: 30px;
}
.trans-search.trans-search-w #search_prod {
    padding-right: 45px;
    padding-left: 18px;
    border-radius: 30px;
    border-color: #5C5C5C;
}
.trans-search.trans-search-w #search_prod i{
    color: #5C5C5C;
}
.trans-search.trans-search-w #search_prod svg path{
    fill: #5C5C5C;
}
.trans-search.trans-search-w .svg-inline--fa.fa-magnifying-glass {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
}
.product_listing_section .trans-search.trans-search-w input.form-control::placeholder {
    font-size: 14px;
    color: #5C5C5C;
}

/*============|| Product Listing styling end ||============*/

/*============|| Product Detail styling start ||============*/
.product_gallery{
    padding: 100px;
    cursor: crosshair;
    background-color: #F5E8F0;
}
.product_thumbs{
    height: 100%;
    padding: 10px;
    background-color: #F5E8F0;
}
.product_thumbs_swiper{
    margin-top: 10px;
}
.product_thumbs_swiper .swiper-slide{
    border: 1px solid transparent;
    height: auto;
}
.product_thumbs_swiper .swiper-slide.swiper-slide-thumb-active{
    border-color: var(--primary-color, #8C0255);
}
.product_detail_detail{
    margin-top: 15px;
}
.product_category_title{
    font-size: 18px;
    color: #333333;
    font-weight: 300;
}
.product_detail_title{
    font-size: 34px;
    font-weight: 600;
    color: #333333;
}
.product_detail_price{
    color: var(--primary-color, #8C0255);
}
.product_detail_price sub{
    position: relative;
    bottom: 2px;
    font-size: 20px;
    color: #333333;
}
.product_detail_star_list li i,.product_detail_star_list li svg{
    color: #C7C7C7;
}
.product_detail_star_list li i.gold,.product_detail_star_list li svg.gold{
    color: #FFC107;
}
.product_detail_star_list li span{
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}
.product_detail_disc{
    font-size: 16px;
    color: #333333;
}
.product_detail_keyBenefit_list{
    list-style-type: disc;
    padding-left: 30px;
}
.product_detail_size_main .form-check{
    padding: 0;
    margin: 0;
}
.product_detail_size_main .form-check .form-check-label{
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #333333;
    border-radius: 30px;
    background-color: var(--white, #FFFFFF);
}
.product_detail_size_main .form-check .form-check-input:checked + .form-check-label{
    color: var(--white, #FFFFFF);
    border-color: var(--primary-color, #8C0255);
    background-color: var(--primary-color, #8C0255);
}
.quantity_box {
    border: 1px solid #333333;
    border-radius: 30px;
}
.quantity_box .quantity_btn{
    background-color: transparent;
    border: unset;
    padding: 10px;
}
.quantity_box .form-control{
    border: unset;
    padding: 0;
    width: 80px;
    font-size: 18px;
    color: #333333;
    font-weight: 600;
}
.related_product_swiper .category_img_box{
    padding: 0;
    border: unset;
}
.related_product_swiper .category_img img{
    width: 150px;
}
.related_product_cont .range_left h2{
    font-size: 17px;
}
.related_product_cont .range_left p{
    font-size: 16px;
}
.related_product_cont .product_detail_star_list{
    font-size: 12px;
}
.related_product_swiper .swiper-slide{
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
}
.swiper_related_product .swiper-button-next,
.swiper_related_product .swiper-button-prev{
    top: 40%;
}
.swiper_related_product .swiper-button-next{
    right: -30px;
}
.swiper_related_product .swiper-button-prev{
    left: -30px;
}




#zoom-pane {
    position: absolute;
    top: 0;
    right: -400px;
    width: 400px;
    height: 400px;
    z-index: 9999;
}

.drift-pane {
  z-index: 9999;
}

/* .drift-pane img {
  width: auto !important;
  height: auto !important;
  max-width: none;
} */

.swiper.product_gallery_swiper.position-relative.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    background: #f5e8f0;
    align-items: center;
    justify-content: center;
    display: flex;
}
.swiper.product_gallery_swiper.position-relative.swiper-initialized.swiper-horizontal.swiper-backface-hidden .swiper-wrapper {
    align-items: center;
}
/*============|| Product Detail styling end ||============*/

/*============|| Breadcrumb styling start ||============*/
.breadcrumb_section{
    padding: 70px 0;
    min-height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.about_us_breadcrumb_bg{
    background-image: url('../img/aboutus_breadcrumb_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #8C0255;
}
/*============|| Breadcrumb styling end ||============*/

/*============|| about us styling start ||============*/
.wwa_cont h3{
    font-size: 20px;
    font-weight: 600;
    font-family: "Amiri";
    color: var(--black, #000000);
}
.wwa_cont .heading_title{
    font-size: 38px;
    font-weight: 700;
    font-family: "Onest", sans-serif;
}
.wwa_cont p{
    font-size: 20px;
}
.wwa_list li:not(:last-child){
    margin-bottom: 12px;
}
.wwa_list li{
    font-size: 18px;
    color: var(--text, #5C5C5C);
}
.mission_section{
    background-color: #FFC9EA;
}
.mission_icon{
    width: 160px;
    height: 160px;
    border: 2px dashed #8C0255;
}
.mission_cont h2{
    font-size: 22px;
    font-weight: 500;
    color: var(--black, #000000);
}
.mission_cont p{
    font-size: 18px;
}
.mission_box:hover .mission_icon{
    background-color: var(--white, #FFFFFF);
}
.founder_img{
    padding: 70px 70px 0 70px;
    background-color: #D9D9D9;
}
.founder_cont .heading_box .heading_text{
    font-size: 20px;
}
.founder_info h2{
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    color: var(--black, #000000);
}
.founder_info h2::before,
.founder_info h2::after{
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    height: 1.5px;
    width: 50px;
    background-color: #000000;
}
.founder_info h2::before{
    left: -65px;
}
.founder_info h2::after{
    right: -65px;
}
.founder_info p{
    font-size: 14px;
}
.quote_top,.quote_bottom{
    position: absolute;
    content: '';
    z-index: -1;
}
.quote_top{
    top: -130px;
    left: -100px;
    transform: rotate(180deg) !important;
}
.quote_bottom{
    bottom: -200px;
    right: 0;
}
.growth_journey_bottom{
    background-image: url('../img/line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
}
.growth_journey_mark{
    width: 70px;
    height: 70px;
    background-color: var(--white, #FFFFFF);
    box-shadow: 0px 4px 16px 0px #00000026;
}
.growth_journey_mark::before{
    position: absolute;
    content: '';
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary-color, #8C0255);
}
.growth_journey_box .mission_cont h2{
    position: relative;
}
.growth_journey_box .mission_cont h2::after{
    position: absolute;
    content: attr(data-text);
    bottom: -16px;
    right: 0;
    font-size: 200px;
    color: #F2F2F2;
    line-height: 1;
    z-index: -1;
    font-weight: 800;
}
.growth_journey_mainbox .col:nth-child(1){
    margin-top: 495px;
}
.growth_journey_mainbox .col:nth-child(2){
    margin-top: 330px;
}
.growth_journey_mainbox .col:nth-child(3){
    padding-left: 170px;
}
.growth_journey_box2.growth_journey_box .mission_cont h2::after{
    bottom: -30px;
    right: -50px;
}
.growth_journey_top{
    margin-bottom: -210px;
    z-index: 9;
    position: relative;
}
.leaders_section{
    background-color: #CBC9FF;
}
.leaders_box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    background-color: var(--white, #FFFFFF);
}
.leaders_img{
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    padding: 15px 35px 0 35px;
    background: radial-gradient(101.55% 101.55% at 50% 29.31%, #FFFFFF 0%, #CBC9FF 100%);
}
.leaders_cont {
    padding: 12px 20px;
}
.leaders_cont h2{
    font-size: 20px;
}
.leaders_left p{
    color: #333333;
}
.leaders_swiper .swiper-slide{
    height: auto;
}
.leaders_swiper_navigation{
    flex-direction: row-reverse;
    justify-content: start;
}
.leaders_swiper_navigation .swiper-button-next, 
.leaders_swiper_navigation .swiper-button-prev{
    position: unset;
    margin-top: 0;
    width: 40px;
    height: 40px;
    color: var(--black, #000000);
    background-color: transparent;
    border-color: var(--black, #000000);
}
.leaders_swiper_navigation .swiper-button-next:after {
    content: '\f105';
}
.leaders_swiper_navigation .swiper-button-prev:after {
    content: '\f104';
}
.leaders_swiper_navigation .swiper-button-next.swiper-button-disabled, 
.leaders_swiper_navigation .swiper-button-prev.swiper-button-disabled{
    opacity: .35;
}
.leaders_box:hover .leaders_img img{
    transform: scale(1.04);
}
section.joinourteam_section {
    padding-bottom: 110px;
}
.joinourteam_box{
    max-width: 1330px;
    margin: auto;
    background-image: url('../img/joinourteam_bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #231E4E;
    padding: 100px;
    border-radius: 20px;
}
.joinourteam_box h2{
    font-size: 48px;
}
.joinourteam_box p{
    font-size: 22px;
    font-weight: 400;
}
.joinourteam_box .primary-btn{
    background-color: var(--white, #FFFFFF);
}
.joinourteam_box .primary-btn2:hover {
    background-color: var(--black, #000000);
}

/*============|| about us styling end ||============*/

/*============|| Legals styling start ||============*/
.legals_breadcrumb_bg{
    background-image: url('../img/legals_breadcrumb_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #084E2D;
}
.legal_box{
    height: 100%;
    padding: 40px;
    background-color: #E8E8E8;
}
.doc_prev{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000B2;
    visibility: hidden;
}
.doc_prev span{
    padding: 5px 22px;
    font-size: 16px;
    color: var(--white, #FFFFFF);
    border: 1px solid var(--white, #FFFFFF);
    border-radius: 20px;
    transition: all 0.3s;
}
.doc_prev span:hover{
    color: var(--primary-color);
    background-color: var(--white);
}
.legal_box:hover .doc_prev{
    visibility: visible;
}
/*============|| Legals styling end ||============*/

/*============|| Compliance styling start ||============*/
.compliance_breadcrumb_bg{
    background-image: url('../img/compliance_breadcrumb_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #351997;
}
.compliance_box{
    height: 100%;
    padding: 15px 25px 15px 15px;
    border-radius: 14px;
    background-color: var(--white, #FFFFFF);
    box-shadow: 0px 3px 16px 0px #8D8D8D33;
}
.compliance_pdf_icon{
    width: 100px;
    height: 100px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #E56BC5 0%, #757DF3 100%);
}
.compliance_right .primary-btn{
    font-size: 16px;
    padding: 14px 30px;
    min-width: auto;
}
/*============|| Compliance styling end ||============*/

/*============|| Our Banks styling start ||============*/
.ourbank_breadcrumb_bg{
    background-image: url('../img/ourbank_breadcrumb_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #040E55;
}
.ourbank_wrap .ourbank_box:not(:last-child){
    margin-bottom: 60px;
}
.ourbank_box{
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0px 3px 16px 0px #8D8D8D33;
}
.ourbank_qr{
    width: 200px;
    text-align: center;
}
.ourbank_qr_box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #000000;
}
.ourbank_text{
    font-size: 20px;
    color: #333333;
    /* font-weight: 600; */
}
.ourbank_border{
    border-right: 1px solid #DDDDDD;
}
.ourbank_logo img{
    height: 55px;
}
/*============|| Our Banks styling end ||============*/

/*============|| Download styling start ||============*/
.download_breadcrumb_bg{
    background-image: url('../img/download_breadcrumb_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #550418;
}
.download_box {
    padding: 20px;
    border-radius: 14px;
    background-color: var(--white, #FFFFFF);
    box-shadow: 0px 3px 16px 0px #8D8D8D33;
    height: 100%;
}
.download_img{
    border-radius: 14px;
    max-height: 250px;
    height: 100%;
    padding: 30px 20px;
}
.download_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.bg_greendownload{
    background-color: #418B3D;
}
.bg_pinkdownload{
    background-color: #A92B77;
}
.bg_skybluedownload{
    background-color: #3E7CB4;
}
.download_cont h2{
    font-size: 25px;
}
.download_cont p{
    font-size: 18px;
}

/*============|| Download styling end ||============*/

/*============|| Grievances styling start ||============*/
.grievances_breadcrumb_bg{
    background-image: url('../img/grievances_breadcrumb_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #045255;
}
.grievances_support{
    padding: 40px;
    border-radius: 14px;
    background-color: var(--white, #FFFFFF);
    box-shadow: 0px 3px 16px 0px #8D8D8D33;
}
.grievances_support_map{
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
}
.grievances_support_map iframe{
    width: 100%;
    height: 100%;
}
.grievances_support_form .form-control,
.grievances_support_form .form-select {
    padding: 15px 20px;
    border-radius: 10px;
    color: #5C5C5C;
    border-color: #E2E2E2;
}
.grievances_support_form .form-control::placeholder,
.grievances_support_form .form-select::placeholder{
    color: #5C5C5C;
}
.grievances_support .gallery_heading .heading_title {
    font-size: 35px;
}

.reachout_box{
    padding: 20px;
    border-radius: 14px;
    background-color: #F0F0F0;
}
.reachout_img{
    width: 110px;
    height: 110px;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 14px;
    padding: 10px 8px 0 8px;
    background-color: var(--white, #FFFFFF);
}
.reachout_cont .heading_title{
    font-size: 22px;
}
.reachout_cont p{
    color: #333333;
}

.modal .modal-header {
  justify-content: space-between;
}
.modal .close {
  background: transparent;
  border: none;
  border-radius: 100%;
  color: #2125297d;
  font-size: 33px;
  line-height: 20px;
}
.modal .close:hover {
  color: #8c0255;
}
.modal-content {
  border-radius: 20px !important;
}
/*============|| Grievances styling end ||============*/

/*============|| Gallery styling start ||============*/
.gallery_breadcrumb_bg{
    background-image: url('../img/gallery_breadcrumb_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #841E04;
}
.gallery_box .gallery_img{
    display: flex;
    height: 187px;
}
.gallery_box .gallery_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery_heading .heading_title{
    font-size: 30px;
}
.gallery_cont .heading_text,.gallery_cont span{
    font-size: 15px;
    color: #333333b3;
}
.gallery_cont span{
    font-size: 13px;
}
.gallery_pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.page-btn {
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}
.page-btn {
    background: #8c0255;
    color: #ffffff;
}
.page-btn.disabled {
    pointer-events: none;
    color: #999999;
    background-color: #DFDFDF;
}
.page-numbers {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-numbers li {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #777;
}
.page-numbers li.active {
    background: #8c0255;
    color: #fff;
}
.page-numbers li.dots {
    cursor: default;
}
/*============|| Gallery styling end ||============*/

/*============|| Notifications styling start ||============*/
.notification_breadcrumb_bg{
    background-image: url('../img/notification_breadcrumb_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #044B84;
}
.gallery_heading .badge{
    font-size: 14px;
    padding: 4px 8px;
    font-family: "MierB";
}
.mar{
    font-size: 16px;
    font-weight: 600;
}
.mar:hover{
    color: var(--primary-color, #8C0255);
}
.notification_wrap{
    padding: 50px;
    border-radius: 14px;
    background-color: var(--white, #FFFFFF);
    box-shadow: 0px 3px 16px 0px #8D8D8D33;
}
.remove_notification{
    width: 28px;
    height: 28px;
    color: var(--white, #FFFFFF);
    background-color: #D9D9D9;
}
.remove_notification svg path{
    fill: #ffffff;
}
.remove_notification:hover{
    background-color: var(--primary-color, #8C0255);
}
.notification_badge{
    padding: 6px 20px;
    border-radius: 40px;
    line-height: normal;
}
.notification_msg{
    background-color: #0AB12E;
}
.notification_alert{
    background-color: #B10A39;
}
.notification_box_right_top .heading_text{
    font-size: 15px;
    color: #8E8E8E;
}
.notification_box_right_bottom h2{
    font-size: 20px;
}
.notification_box_right_bottom h2.new::before{
    position: absolute;
    content: '';
    top: 8px;
    right: -20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color, #8C0255);
}
.notification_box_right_bottom .heading_text{
    font-size: 16px;
    margin: 0;
}
.notification_wrap .notification_box:not(:last-child){
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DDDDDD
}
.data_not_fount_inner .heading_box h2{
    color: #939090;
}
.data_not_fount_inner .heading_box p{
    color: #A0A0A0;
}
/*============|| Notifications styling end ||============*/

/*============|| True Women styling start ||============*/
.true_women_home_section{
    background-image: url("../img/true_women_home_banner_bgimg_1.png"), url("../img/true_women_home_banner_bgimg_2.png"), url("../img/true_women_home_banner_bgimg_3.png");
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 0% 0%, 100% 0%, 100% 88%;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.true_women_home_right_aniimg{
    bottom: unset;
    top: -140px;
    left: 130px;
}
.true_women_home_section .home_left .heading_text,.gluco_care_home_section .home_left .heading_text,.well_diet_home_section .home_left .heading_text,.saffron_home_section .home_left .heading_text,.honey_home_section .home_left .heading_text,.saffron_attar_home_section .home_left .heading_text{
    font-size: 18px;
}
.true_women_herbal_uterine .grievances_support_form h2,.gluco_care_diabetes .grievances_support_form h2{
    font-size: 36px;
}
.true_women_herbal_uterine .grievances_support_form p,.gluco_care_diabetes .grievances_support_form p,.well_diet_nutritional p{
    font-size: 18px;
    line-height: 32px;
}
.shadowbit-slider-area{
    padding: 90px 0;
    overflow: hidden;
}
.shadowbit-slider1,
.shadowbit-slider2{
    padding: 12px 0;
    width: 102%;
    margin: auto -11px;
}
.shadowbit-slider1{
    position: relative;
    background-color: #8C0255;
    transform: translateY(0%) rotate(-4deg);
}
.shadowbit-slider2{
    background-color: #FFD0EC;
    transform: translateY(-50%) rotate(4deg);
}
.shadowbit-slider {
  width: 103%;
  overflow: hidden;
  position: relative;
}

.shadowbit-track {
  display: flex;
  animation: scrollLeft 20s linear infinite;
  gap: 110px;
}

.shadowbit-track.reverse {
  animation: scrollRight 20s linear infinite;
}
.shadowbit-track h2{
    font-size: 35px;
    font-weight: 600;
    flex-shrink: 0;
    margin: 0;
}
.shadowbit-track h2{
    color: #FFFFFF;
}
.reverse h2{
    color: #8C0255;
}


/* Scroll left */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Scroll right */
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.true_women_hitw::before{
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 45.7%;
    height: 120%;
    background-color: #FFE8F6;
    z-index: -1;
    transform: translateY(-50%);
}
.true_women_hitw_keyingre_cont .reachout_cont .heading_title{
    font-size: 28px;
    font-weight: 700;
    font-family: "Onest", sans-serif;
}
.true_women_hitw_keyingre_cont{
    padding-left: 90px;
}
.true_women_hitw_keyingre_box_cont h2{
    color: var(--primary-color, #8C0255);
}
.true_women_hitw_keyingre_wrap .true_women_hitw_keyingre_box:not(:last-child){
    margin-bottom: 20px;
}
.true_women_hitw{
    margin-bottom: 12rem;
}
.true_women_keyingre .true_women_hitw_keyingre_cont{
    padding-left: 0;
    padding-right: 90px;
}
.true_women_keyingre::before{
    position: absolute;
    content: '';
    top: -50px;
    right: 0;
    width: 45%;
    height: 120%;
    background-color: #FFE8F6;
    z-index: -1;
}
.happy_customer_box{
    height: 100%;
    padding: 20px;
    border: 1px solid #C3C3C3;
    background-color: var(--white, #FFFFFF);
}
.happy_customer_cont h2{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color, #8C0255);
}
.happy_customer_cont p{
    font-size: 18px;
    font-weight: 400;
}
.happy_customer_navigation .swiper-button-next,
.happy_customer_navigation .swiper-button-prev{
    position: unset;
    margin-top: 0;
    background-color: transparent;
    color: var(--primary-color, #8C0255);
    height: 30px;
}
.happy_customer_navigation .swiper-button-next::after,
.happy_customer_navigation .swiper-button-prev::after{
    content: '';
    position: absolute;
    background-image: url('../../v2/img/swiper-arrow-fill.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 14px;
    width: 50px;
}
.happy_customer_navigation .swiper-button-next.swiper-button-disabled::after{
    background-image: url('../../v2/img/swiper-arrow.svg');
    transform: rotate(-180deg);
}
.happy_customer_navigation .swiper-button-prev.swiper-button-disabled::after{
    background-image: url('../../v2/img/swiper-arrow.svg');
    transform: rotate(0deg);
}
.happy_customer_navigation .swiper-button-prev::after{
    transform: rotate(180deg);
}
.happy_customer_swiper .swiper-slide{
    height: auto;
}
.tw_benefits{
    background-color: #8C0255;
}
.true_women_benefits .heading_box p{
    color: #ffffffb3;
}
.tw_benefits_box_icon{
    width: 160px;
    height: 160px;
    background-color: transparent;
    padding: 10px;
    border: 1px solid #FFFFFF
}
.twb_icon{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--white, #FFFFFF);
}
.tw_benefits_box h2{
    font-size: 22px;
}
.tw_benefits_box:hover .twb_icon img,
.tw_instruction_box:hover .instruction_icon img,
.gc_key_ingredient_box:hover .gc_key_ingredient_box_img img{
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
    transform: scale(1.04);
} 
.tw_instruction_box{
    height: 100%;
    padding: 25px;
    border: 1px solid #E9E9E9;
}
.tw_instruction_icon{
    width: 65px;
    height: 65px;
    border: 1px solid #E9E9E9;
    padding: 3px;
}
.instruction_icon{
    height: 100%;
    padding: 8px;
    background-color: #E9E9E9;
}
.tw_instruction_box p{
    font-size: 16px;
}
.tw_instruction_box:hover .instruction_icon{
    background-color: #fae4f1;
}
.last_section_comman_pb{
    padding-bottom: 110px;
}
/*============|| True Women styling end ||============*/

/*============|| Gluco Care styling start ||============*/
.gluco_care_home_section {
    background-image:  url("../img/saffron_home_banner_bgimg_1.png"), url("../img/saffron_home_banner_bgimg_2.png"), url("../img/saffron_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFE9E9 7.79%, #F08585 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.gluco_care_home_right_aniimg{
    bottom: unset;
    top: 0;
    left: unset;
    right: 0;
}
.dark_brown{
    color: #824A07;
}
.golden_brown{
    color: #995A0E;
}
.dark-gray-text{
    color: #333333;
    font-weight: 400;
}
.gluco_care_key_benefits_cart{
    position: relative;
    max-width: 1760px;
    margin: auto;
    padding-top: 200px;
    text-align: center;
}
.key_benefits_label_text,.key_benefits_label_box{
    position: absolute;
}
.key_benefits_label_text{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #762E67;
    border-radius: 60px;
    padding: 7px 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.key_benefits_label_text .heading_title{
    font-size: 30px;
    color: #762E67;
}
.key_benefits_label_text:hover{
    background-color: #762E67;
}
.key_benefits_label_text:hover .heading_title{
    color: var(--white, #FFFFFF);
}
.key_benefits_label_text::before{
    position: absolute;
    content: '';
    bottom: -138px;
    width: 1px;
    height: 260%;
    border-right: 3px dashed #762E67
}
.key_benefits_label_box{
    min-width: 430px;
    padding: 8px;
    border-radius: 80px;
    border: 2px solid transparent;
    background-color: #762E67;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.key_benefits_label_box_img{
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    background-color: var(--white, #FFFFFF);
}
.key_benefits_label_box_cont h2{
    font-size: 24px;
    font-weight: 600;
}
.key_benefits_label_box::before{
    position: absolute;
    content: '';
    border-right: 3px dashed #762E67
}
.kb_digestive{
    top: 10%;
    left: 10%;
}
.kb_digestive::before,.kb_ayurvedic::before{
    bottom: -86px;
    right: -30px;
    width: 1px;
    height: 140%;
    transform: rotate(-48deg);
    z-index: -1;
}
.kb_ayurvedic{
    top: 10%;
    right: 10%;
}
.kb_ayurvedic::before{
    bottom: -86px;
    right: unset;
    left: -30px;
    transform: rotate(48deg);
}
.kb_herbal{
    top: 50%;
    left: 0;
}
.kb_herbal::before,.kb_sugar::before{
    top: -14px;
    right: -55px;
    width: 1px;
    height: 140%;
    transform: rotate(90deg);
    z-index: -1;
}
.kb_sugar{
    top: 50%;
    right: 0;
}
.kb_sugar::before{
    top: -14px;
    right: unset;
    left: -55px;
}
.kb_blood{
    top: 85%;
    left: 10%;
}
.kb_blood::before,.kb_wellness::before{
    bottom: 45px;
    right: -30px;
    width: 1px;
    height: 120%;
    transform: rotate(48deg);
    z-index: -1;
}
.kb_wellness{
    top: 85%;
    right: 10%;
}
.kb_wellness::before{
    bottom: 45px;
    right: unset;
    left: -30px;
    transform: rotate(-48deg);
}
.key_benefits_label_box:hover{
    border-color: #762E67;
    background-color: var(--white, #FFFFFF);
}
.key_benefits_label_box:hover .key_benefits_label_box_cont h2{
    color: #762E67 !important;
}
.key_benefits_label_box:hover .key_benefits_label_box_img{
    background-color: #FEE3E3;
}
.gluco_care_key_ingredients{
    background-color: #FEE3E3;
}
.gc_key_ingredient_box_img{
    width: 80px;
    height: 80px;
    border: 3px solid #762E67;
    background-color: var(--white, #FFFFFF);
}
.gc_key_ingredient_box_cont h2{
    font-size: 24px;
    font-weight: 500;
}
.gc_key_ingredient_box_cont p{
    font-size: 18px;
    font-weight: 400;
    color: #333333;
}
.tw_works{
    background-color: #B97522;
}
.hgc_works {
  background-color: #762E67;
}

.dark_purple {
    color: #4F103E !important;
}

.light_purple {
    color: #952080 !important;
}

/*============|| Gluco Care styling end ||============*/

/*============|| Well Diet styling start ||============*/
.well_diet_home_section {
    background-image:  url("../img/well_diet_home_banner_bgimg_1.png"), url("../img/well_diet_home_banner_bgimg_2.png"), url("../img/well_diet_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #E9FFE9 7.79%, #B7DF96 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.dark_green{
    color: #185B04;
}
.moss_green{
    color: #2D6906;
}
.well_diet_nutritional{
    border: 1px solid transparent;
    border-bottom-right-radius: 50px;
    border-right-color: #5DA747;
    border-bottom-color: #5DA747;
    padding: 0 20px 30px 20px;
}
.well_diet_biee .heading_title{
    font-size: 24px;
    font-family: "Onest", sans-serif;
}
.well_diet_biee p{
    color: var(--text, #5C5C5C);
}
.well_diet_biee_list li:not(:last-child){
    margin-bottom: 20px;
}
.well_diet_why_choose{
    background-color: #E8FFE8;
}
.well_diet_key_ingredient{
    background-color: #6BB24D;
}
.well_diet_biee_img2{
    margin-top: -6rem;
}
.well_diet_why_choose .heading_box p,.saffron_benefits .heading_box p{
    color: #333333;
}
/*============|| Well Diet styling end ||============*/

/*============|| saffron styling start ||============*/
.saffron_home_section{
    background-image:  url("../img/saffron_home_banner_bgimg_1.png"), url("../img/saffron_home_banner_bgimg_2.png"), url("../img/saffron_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFE9E9 7.79%, #FFA9AB 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.deep_maroon{
    color: #730808;
}
.crimson_red{
    color: #A30D0D;
}
.saffron_wc{
    background-color: #A30D0D;
}
.saffron_authentic_box{
    height: 100%;
    padding: 50px 30px;
    border: 1.5px solid transparent;
    border-radius: 50px;
    box-shadow: 0px 7px 18px 0px #00000024;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.saffron_authentic_box.border_green:hover{
    background-color: #effff0;
}
.saffron_authentic_box.border_blue:hover{
    background-color: #f1f4ff;
}
.saffron_authentic_box.border_orange:hover{
    background-color: #fff7ee;
}
.saffron_authentic_box.border_pink:hover{
    background-color: #fff2fa;
}
.saffron_benefits{
    background: radial-gradient(53.68% 53.68% at 50% 50%, #FFF0F0 13.92%, #FFF0F0 58.37%, #FFB9BA 100%);
}
.saffron_benefits_wrap{
    padding-top: 250px;
}
.sb_img_main{
    width: 140px;
    height: 140px;
    padding: 6px;
    border: 2px solid transparent;
}
.border_green{
    border-color: #0B9D15;
}
.border_blue{
    border-color: #103BEA;
}
.border_orange{
    border-color: #EF8317;
}
.border_pink{
    border-color: #BE177B;
}
.border_crimson_red{
    border-color: #A30D0D;
}
.border_moss_green {
    border-color: #2D6906;
}
.saffron_benefits_box h2{
    font-size: 35px;
    font-weight: 600;
    font-family: "Amiri";
}
.saffron_benefits_box_img{
    background-color: var(--white, #FFFFFF);
}
.violet_color{
    color: #78159F;
}
.border_violet{
    border-color: #78159F;
}
.dark_orange{
    color: #D24900;
}
.border_dark_orange{
    border-color: #D24900;
}
.saffron_benefits_absolute1,
.saffron_benefits_absolute2,
.saffron_benefits_absolute3{
    position: absolute;
    width: 100%;
}
.saffron_benefits_absolute1{
    top: 0;
}
.saffron_benefits_absolute2{
    top: 28%;
}
.saffron_benefits_absolute3{
    top: 70%;
}
.saffron_benefits_img{
    width: 35%;
    margin: auto;
}
/*============|| saffron styling end ||============*/

/*============|| Honey styling start ||============*/
.honey_home_section{
    background-image:  url("../img/honey_home_banner_bgimg_1.png"), url("../img/honey_home_banner_bgimg_2.png"), url("../img/honey_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #E2CAFF 7.79%, #BE84FF 100%);;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.honey{
    background-color: #751FD7;
}
.pt-180{
    padding-top: 130px !important;
}
.deep_violet{
    color: #35066C;
}
.gluco_care_diabetes .grievances_support_form .heading_title.violet_color{
    color: #4D0B9A;
}
.honey_why_choose{
    background-color: #F7BC34;
}
.walnut{
    color: #563502;
}
.honey_why_choose_box{
    border: 1.5px solid transparent;
    padding: 10px;
    padding-right: 33px;
    background-color: #AD7B09;
    border-radius: 75px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.honey_wc_icon{
    width: 80px;
    height: 80px;
    background-color: var(--white, #FFFFFF);
}
.honey_why_choose_box:hover{
    border-color: #AD7B09;
    background-color: var(--white, #FFFFFF);
}
.honey_why_choose_box:hover .honey_wc_icon{
    background-color: #F7BC34;
}
.honey_why_choose_box:hover .honey_wc_cont .heading_text{
    color: #AD7B09 !important;
}
.honey_wc_cont .heading_text{
    font-size: 18px;
}
.honey_golden_nectar_wrap{
    background-image:  url("../img/hgn_bg_img_1.png"), url("../img/hgn_bg_img_2.png");
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
    background-position: 0% 0%, 100% 100%; 
}
.honey_golden_nectar_img img{
    width: 35%;
}
.honey_golden_nectar_box h2{
    font-size: 22px;
    font-family: "Onest", sans-serif;
    font-weight: 500;
    color: #333333;
    text-transform: capitalize;
}
.position-absolute_1,
.position-absolute_2,
.position-absolute_3{
    position: absolute;
    width: 100%;
}
.position-absolute_1{
    top: 85px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}
.hgn_arrow_1,.hgn_arrow_2,.hgn_arrow_3,.hgn_arrow_4,.hgn_arrow_5,.hgn_arrow_6{
    position: absolute;
    width: 165px;
}
.hgn_arrow_1{
    bottom: -135px;
    right: -84px;
}
.hgn_arrow_2{
    bottom: -130px;
    left: -130px;
}
.position-absolute_2{
    top: 45%;
}
.hgn_arrow_3{
    bottom: -50px;
    right: -85px;
}
.hgn_arrow_4{
    top: 0;
    left: -190px;
}
.position-absolute_3{
    bottom: 0;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}
.hgn_arrow_5{
    top: -80px;
    right: -130px;
}
.hgn_arrow_6{
    top: -150px;
    left: 0;
}
/*============|| Honey styling end ||============*/

/*============|| saffron_attar styling start ||============*/
.saffron_attar_home_section{
    background-image:  url("../img/saffron_attar_home_banner_bgimg_1.png"), url("../img/saffron_attar_home_banner_bgimg_2.png"), url("../img/saffron_attar_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFF8D5 7.79%, #F9E079 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.antique_gold{
    color: #9A8116;
}
.goldenrod_color{
    color: #AC7808 !important;
}
.saffron_attar_essence_box{
    padding: 30px;
    height: 100%;
}
.saffron_attar_essence_box_bg1{
    background-color: #F9F0AA;
}
.saffron_attar_essence_box_bg2{
    background-color: #FFD9B8;
}
.saffron_attar_essence_box_bg3{
    background-color: #C5E5FF;
}
.saffron_attar_essence_box_bg4{
    background-color: #F5D7FF;
}
.saffron_attar_essence_box_bg5{
    background-color: #FFD5E3;
}
.saffron_attar_essence_box_bg6{
    background-color: #CDFABF;
}
.saffron_attar_why_choose .true_women_hitw::before{
    background: linear-gradient(44.95deg, #F5AB5F 1.32%, #D97A3A 69.64%);
}
.saffron_attar_experience{
    background-color: #D76313;
}
.saffron_attar_experience .gc_key_ingredient_box_cont p{
    font-size: 20px;
    font-weight: 500;
}
.saffron_attar_experience .gc_key_ingredient_box_img{
    width: 90px;
    height: 90px;
}
/*============|| saffron_attar styling end ||============*/

/*============|| terms styling start ||============*/
.terms_breadcrumb_bg {
    background-image: url("../img/termPolicy_breadcrumb_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #001A52;
}
.terms_box{
    margin-bottom: 40px;
}
/*============|| terms styling end ||============*/

/*============|| contactus styling start ||============*/
.contact_us_section .grievances_support{
    padding: 20px;
}
.contactus_breadcrumb_bg{
    background-image: url("../img/contactus_breadcrumb_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #550404;
}
.quick_talk_box{
    padding: 30px;
    border-radius: 15px;
    background-color: #EBDAFF;
    height: 100%;
}
.quick_talk_icon{
    width: 70px;
    height: 70px;
    background-color: #F6EEFF;
}
.quick_talk_box .reachout_cont .heading_title {
    font-size: 28px;
    color: #400A81;
}
.quick_talk_box .reachout_cont p {
    font-size: 18px;
}
.contact_us_section .grievances_support_map{
    border: 1.5px solid #E2E2E2;
}
#sub_btn{
    min-width: 240px;
}
/*============|| contactus styling end ||============*/

/*============|| login/register styling start ||============*/
.login_section{
    background-image: url("../img/login_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.login_section .heading_text {
    font-size: 18px;
}
.login_section .heading_text a {
    font-weight: 700;
}
.login_main{
    max-width: 570px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    background-color: var(--white, #FFFFFF);
    box-shadow: 0px 3px 16px 0px #8D8D8D33;
}
.login_main .gallery_heading .heading_title {
    font-size: 34px;
}
.iti {
    display: block;
  --iti-path-flags-1x: url('../img/flags.webp');
  --iti-path-flags-2x: url('../img/flags@2x.webp');
}
.iti .form-control {
    padding-left: 105px !important;
}
.iti__selected-country::before {
    position: absolute;
    right: -18px;
    content: '';
    width: 1px;
    height: 35px;
    background-color: #E2E2E2;
}
.iti__selected-country-primary:hover {
    background-color: transparent !important;
}
.iti__search-input{
    padding: 10px;
}
.placement .form-check-input{
    width: 20px;
    height: 20px;
    margin-top: 1px;
    --bs-form-check-bg: transparent;
    border-color: #808080;
}
.placement .form-check-input:checked{
    background-color: transparent;
    border-color: var(--primary-color);
}
.placement .form-check-input:checked[type=radio]{
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.5' fill='%238C0255'/%3e%3c/svg%3e");
}
.form-check-input:focus {
    box-shadow: unset;
}
.placement .form-check-input:checked[type=radio] + .form-check-label,.login_link{
    color: var(--primary-color, #8C0255);
}
.login_link:hover{
    text-decoration: underline !important;
}
.eye {
    top: 50%;
    right: 10px;
    cursor: pointer;
    color: #5C5C5C;
    transform: translateY(-50%);
    display: flex;
    padding: 10px;
}
.login_main .form-grp .form-check-input[type="checkbox"]:checked {
    background-color: var(--primary-color, #8C0255);
    border-color: var(--primary-color, #8C0255);
}
.login_main .form-grp .form-check-input[type="checkbox"] {
    border-color: #5C5C5C;
}
.login_main .form-grp .form-check-input[type="checkbox"]:focus{
    border-color: var(--primary-color, #8C0255);
}

.login_main.signup_main{
    max-width: 800px;
}

.select2-selection.select2-selection--single {
  padding: 15px 20px;
  border-radius: 10px !important;
  color: #5C5C5C;
  border-color: #E2E2E2;
  height: unset;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.select2-search__field:focus-visible {
  outline: none;
}
.form-check-input:checked {
  background-color: #8c0255;
  border-color: #8c0255;
}
.intl-tel-input.allow-dropdown.separate-dial-code {
  width: 100%;
}
.intl-tel-input.separate-dial-code .selected-flag {
    border-radius: 10px 0 0 10px;
}

/*============|| login/register styling end ||============*/

/*============|| cart styling start ||============*/
.cart_breadcrumb_bg {
    background-image: url("../img/cart_breadcrumb_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #234B05;
}
.cart_box,.bill_summery{
    padding: 20px;
    border-radius: 15px;
    background-color: var(--white, #FFFFFF);
    box-shadow: 0px 3px 16px 0px #8D8D8D33;
}
.cart_box_top,.cart_box_box,.cart_box_box_img{
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
}
.cart_box_box{
    padding: 15px;
}
.cart_box_box_img{
    padding: 10px;
    width: 100px;
    height: 100px;
}
.cart_box_box_cont .product_detail_title{
    font-size: 16px;
}
.cart_box_box_cont .product_detail_price sub{
    margin-right: 5px;
    font-size: 12px;
    bottom: 0;
}
.cart_box_box_right .quantity_box .form-control{
    width: 40px;
    font-size: 16px;
}
.cart_box_box_right .quantity_box{
    border-color: var(--primary-color, #8C0255);
}
.cart_box_box_right .quantity_box .form-control,.cart_box_box_right .quantity_box .quantity_btn,.paid p{
    color: var(--primary-color, #8C0255);
}
.cart_box_bottom .cart_box_box:not(:last-child){
    margin-bottom: 12px;
}
.bill_summery{
    padding: 0;
}
.bill_summery_top{
    padding: 20px 20px 10px;
    border-bottom: 1px solid #D9D9D9;
}
.bill_summery_body{
    padding: 20px;
}
.green_color{
    color: #088C11;
}
.bill_summery_list li:not(:last-child){
    margin-bottom: 12px;
}
.dash_hr{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #D9D9D9;
}
#zoom-pane {
  position: absolute;
  top: 0;
  right: -420px; /* adjust */
  width: 400px;
  height: 400px;
  z-index: 9999;
}
.drift-pane {
  z-index: 9999;
}
.breadcrumb_section .heading_title {
    font-size: 40px;
}
.breadcrumb_section .heading_box p {
    font-size: 18px;
}

/*============|| cart styling end ||============*/


.list-decimal {
  list-style: decimal !important;
  padding-left: 20px;
}
.list-disc {
  list-style: disc !important;
  padding-left: 20px;
}
.terms_section .gallery_heading .heading_title {
    font-size: 30px;
    margin-bottom: 15px;
    margin-top: 45px;
}
.help-block {
  color: #f10202 !important;
}
.toast{
    opacity: 1 !important;
}
.terms_section p {
    font-size: 18px;
    line-height: 32px;
}
.new_label_tag::before,.new_label_tag_inner::before{
    content: "NEW";
    position: absolute;
    top: -8px;
    color: #fff;
    font-size: 10px;
    background: #9CCA0A;
    padding: 0px 10px;
    border-radius: 2px;
    font-weight: 700;
    line-height: 15px;
    right: 12px;
}
.new_label_tag::after {
    content: '';
    display: block;
    position: absolute;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #9CCA0A;
    margin-left: -10px;
    top: 7px;
    right: 29px;
}
.new_label_tag_inner{
    position: relative;
}
.new_label_tag_inner::before{
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    padding: 0px 6px;
}

.heading_box_sec .heading_title {
    font-size: 36px;
}
.heading_box_sec p {
    font-size: 18px;
}
.choose_place .heading_text{
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}
.cart_count {
    font-size: 8px;
    top: 3px;
    padding: 2px 5px;
}
.new_paragraph p{
    font-size: 18px;
    font-weight: 400;
}


/*============|| Well Pachan styling start ||============*/

.natural_digestive_care_icon {
  background: #F8F3FF;
  padding: 20px;
  border-radius: 100%;
  width: fit-content;
}

.natural_digestive_care_box h2 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}
.natural_digestive_care_center {
  border-radius: 322px;
  border: 1px solid #E9D6FF;
  background: #FFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 60%, rgb(233, 214, 255) 60%, rgb(233, 214, 255) 100%);
  padding: 18% 20px;
}
.natural_digestive_care_box {
  min-height: 280px;
}
.well_pachan_why_choose {
    background-color: #B372FF;
}
.well_pachan_why_choose .honey_why_choose_box {
  background-color: #580CB0;
}
.well_pachan_why_choose .honey_why_choose_box:hover {
  border-color: #580CB0;
  background-color: var(--white, #FFFFFF);
}
.well_pachan_why_choose .honey_why_choose_box:hover .honey_wc_cont .heading_text {
  color: #580CB0 !important;
}
.well_pachan_why_choose .honey_wc_icon {
  background-color: var(--white, #FFFFFF);
}
.well_pachan_why_choose .honey_why_choose_box:hover .honey_wc_icon {
  background-color: #580CB0;
}
.honey_why_choose_box:hover .honey_wc_icon img  {
    filter: invert(1) grayscale(1) brightness(9);
}
.violet_color_1 {
    color: #340070 !important;
}

.benefits_well_pachan .true_women_hitw::before {
    display: none;
}
.benefits_well_pachan_img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 39%;
}

.well_pachan_expert_section.expert_section {
  background: linear-gradient(180deg, #FFF 0%, #DFC3FF 100%);
}

/*============|| Well Pachan styling end ||============*/

/*============|| Facia kit styling start ||============*/
.facial_kit_home_section {
    background-image: url("../img/facial_home_banner_bgimg_1.png"), url("../img/facial_home_banner_bgimg_2.png"), url("../img/facial_home_banner_bgimg_3.png"),radial-gradient(100% 100% at 50% 0%, #FFEFE9 7.79%, #FF9865 100%);
}
.rust_color {
    color: #AA3C00 !important;
}
.how_to_use_facial_kit {
    background-color: #FFE7D9;
}
.how_to_use_facial_kit .well_diet_why_choose_box .wdwc_icon {
  border: 1px solid #000;
  border-radius: 100%;
  width: fit-content;
  margin: 0 auto;
  padding: 15px;
}
.how_to_use_facial_kit .well_diet_why_choose_box:hover .wdwc_icon {
    border: 1px solid #aa3c00;
    background: #aa3c00;
}

.how_to_use_facial_kit .well_diet_why_choose_box:hover .wdwc_icon img {
    filter: brightness(9) grayscale(9);
}
.how_to_use_facial_kit .well_diet_why_choose_box.gc_key_ingredient_box_cont {
  width: fit-content;
  margin: 0 auto;
}
/*============|| Facia kit styling end ||============*/


/*============|| Well Quit styling start ||============*/
.well_quit_home_section {
    background-image: url("../img/well_quit_home_banner_bgimg_1.png"), url("../img/well_quit_home_banner_bgimg_2.png"), url("../img/well_quit_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFF2F7 7.79%, #FF72AE 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.ayurveda_card {
  border-radius: 15px;
  height: 100%;
}
.well_quit_key_ingredients {
    background-color: #FFE7F1;
}
.magenta_color {
    color: #8C0255 !important;
}
.well_quit_key_ingredients .gc_key_ingredient_box_img {
  border: 3px solid #8C0255;
}
.well_quit_ssp_section.ssp_section {
  background: #FFF3FA;
}
.well_quit_ssp_section.ssp_section .ssp_section_inner {
  background: none;
}
.well_quit_ssp_section .ssp_cont h2 {
  font-size: 26px;
  font-family: "Amiri";
  color: #8C0255;
}
.well_quit_ssp_section .ssp_cont p {
  color: #333333;
}
.well_quit_ssp_section .ssp_inner .col:not(:last-child) {
  border-right: 1px solid #EE9FCE42;
}
/*============|| Well Quit styling end ||============*/

/*============|| Well Reno styling start ||============*/

.well_reno_home_section {
    background-image: url("../img/well_reno_home_banner_bgimg_1.png"), url("../img/well_reno_home_banner_bgimg_2.png"), url("../img/well_reno_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFE2E0 7.79%, #FF7C70 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.well_reno_key_ingredients {
  background-color: #F2796E;
}
.well_reno_key_ingredients .gc_key_ingredient_box_cont h2 {
    color: #840B00;
}
.well_reno_key_ingredients .gc_key_ingredient_box_img {
    border-color: #840B00;
}
.well_reno_why_choose {
    background-color: #D2392A;
}
.kidney_wellness_card h2 {
  font-size: 20px;
  font-weight: 500;
}
.kidney_wellness_card p {
  font-size: 18px;
  font-weight: 400;
}
.vibrant_red {
    color: #B91000 !important;
}
/*============|| Well Reno styling end ||============*/

/*============|| Painfree powder styling start ||============*/
.painfree_powder_home_section {
    background-image: url("../img/painfree_powder_home_banner_bgimg_1.png"), url("../img/painfree_powder_home_banner_bgimg_2.png"), url("../img/painfree_powder_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFF4D4 7.79%, #FFD55C 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.painfree_powder_expert_section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFEAD0 100%);
}
.saddlebrown_color {
    color: #874A00 !important;
}
.painfree_powder_key_ingredients {
    background-color: #C98A3F;
}
.painfree_powder_key_ingredients h2 {
    color: #633700;
}
.painfree_powder_key_ingredients .gc_key_ingredient_box_img {
  border: 3px solid #633700;
}
.painfree_powder_ssp_section {
    background: #EEEEEE;
}
.painfree_powder_ssp_section {

}
.painfree_powder_ssp_section .ssp_section_inner {
  background-color: transparent;
}
.painfree_powder_ssp_section .ssp_cont p {
  color: #333333a8;
}
.painfree_powder_ssp_section .ssp_inner .col:not(:last-child) {
  border-right: 1px solid #89898936;
}
.painfree_powdere_benefits .saffron_authentic_box {
  height: 100%;
  padding: 30px;
  border: 1px solid #874A00;
  box-shadow: none;
}
.painfree_powdere_benefits .saffron_authentic_box:hover {
  background-color: #874a000c;
}
.ppb_icon {
  background: #FFFAED;
  width: fit-content;
  border-radius: 100%;
  padding: 10px;
  margin: 0 auto;
}
.painfree_powdere_benefits .saffron_authentic_box:hover .ppb_icon {
  background: #874a00;
}
.painfree_powdere_benefits .saffron_authentic_box:hover .ppb_icon img {
    filter: brightness(9) grayscale(9);
}
/*============|| Painfree powder styling end ||============*/

/*============|| well livo styling start ||============*/

.well_livo_home_section {
  background-image: url("../img/well_livo_home_banner_bgimg_1.png"), url("../img/well_livo_home_banner_bgimg_2.png"), url("../img/well_livo_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFEDFF 7.79%, #FF74FD 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  background-position: 0% 100%, 100% 0%, 100% 88%, center;
  min-height: 630px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.patriarch_color {
color: #6F006D;
}
.well_livo_key_ingredients {
    background-color: #DB5D98;
}
.well_livo_key_ingredients .gc_key_ingredient_box_cont h2 {
    color: #4C0426;
}
.well_livo_key_ingredients .gc_key_ingredient_box_img {
  border: 3px solid #4C0426;
}
.well_livo_why_choose {
    background-color: #8C0255;
}
.digestive_liver_support .natural_digestive_care_box {
  border: 1px solid #EBC8EB;
  border-radius: 30px;
}
.digestive_liver_support .natural_digestive_care_box:hover {
background: #fff7ff;
}
/*============|| well livo styling end ||============*/


/*============|| well pro styling end ||============*/

.well_pro_home_section {
  background-image: url("../img/well_pro_home_banner_bgimg_1.png"), url("../img/well_pro_home_banner_bgimg_2.png"), url("../img/well_pro_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFF2E2 0%, #FFC27C 92.21%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  background-position: 0% 100%, 100% 0%, 100% 88%, center;
  min-height: 630px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.traditional_brown_color {
    color: #9A4D00 !important;
}

.well_pro_protein_powder_benefits .saffron_authentic_box:hover {
  background-color: #f6f6f6;
}
.well_pro_protein_powder_benefits .saffron_authentic_box {
  height: 100%;
  padding: 30px;
  border: 1px solid #000000;
  box-shadow: none;
}
.well_pro_protein_powder_benefits .saffron_authentic_box:hover .ppb_icon {
  background: #000;
}
.well_pro_protein_powder_benefits .saffron_authentic_box:hover .ppb_icon img {
  filter: invert(9);
}
.well_pro_protein_powder_benefits .ppb_icon {
  background: #F6F6F6;
}
.benefits_well_pro_protein_powder .benefits_well_pachan_img {
  position: absolute;
  left: unset;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 39%;
}

.well_pro_protein_key_ingredients {
    background-color: #B55B00;
}
.well_pro_protein_key_ingredients h2 {
color: #2A1600;
}
/*============|| well pro styling end ||============*/


/*============|| hair nourish kit styling start ||============*/

.hair_nourish_kit_home_section {
    background-image: url("../img/hair_nourish_home_banner_bgimg_1.png"), url("../img/hair_nourish_home_banner_bgimg_2.png"), url("../img/hair_nourish_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #DBFFC8 0%, #99EA6D 92.21%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.naturally_strong_hair_section .saffron_authentic_box {
  height: 100%;
  padding: 24px;
  border: 1px solid #2B7800;
  box-shadow: none;
}
.naturally_strong_hair_section .gc_key_ingredient_box_cont h2 {
    font-size: 20px;
    color: #000;
}
.hair_nourish_kit_key_ingredients {
    background-color: #419015;
}
.naturally_strong_hair_section .ppb_icon {
  background: #F6FFF1;
}
.naturally_strong_hair_section .saffron_authentic_box:hover {
  background-color: #f6fff1;
}
.naturally_strong_hair_section .saffron_authentic_box:hover .ppb_icon {
  background: #2B7800;
}
.naturally_strong_hair_section .saffron_authentic_box:hover .ppb_icon img {
  filter: grayscale(9) brightness(9);
}
.naturally_strong_hair_section .gc_key_ingredient_box_cont p {
  font-size: 16px;
  color: var(--text, #5C5C5C);
}
.hair_nourish_kit_key_ingredients h2 {
    color: #173E02;
}
.hair_nourish_kit_key_ingredients .gc_key_ingredient_box_img {
  border: 3px solid #173E02;
}
.forest_green {
    color: #2B7800 !important;
}
.hair_nourish_kit_expert_section {
    background: linear-gradient(180deg, #FFFFFF 0%, #E9FFDC 100%);
}
.wcbp_icon {
  background: #FFFCDD;
  width: fit-content;
  height: fit-content;
  padding: 15px;
}
.why_choose_beauty_prash_section .gc_key_ingredient_box_cont p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text, #5C5C5C);
}
.why_choose_beauty_prash_section .gc_key_ingredient_box_cont h2 {
  font-size: 20px;
}
/*============|| hair nourish kit styling end ||============*/

/*============|| bee trim honey styling start ||============*/

.bee_trim_honey_home_section {
    background-image: url("../img/bee_trim_honey_banner_bgimg_1.png"), url("../img/bee_trim_honey_banner_bgimg_2.png"), url("../img/bee_trim_honey_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFFCC5 7.79%, #FFEA59 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  background-position: 0% 100%, 100% 0%, 100% 88%, center;
  min-height: 630px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.bee_trim_honey_key_ingredients {
    background: #D09500;
}

.bee_trim_honey_key_ingredients .gc_key_ingredient_box_cont h2 {
    color: #442B00;
}
.bee_trim_honey_key_ingredients .gc_key_ingredient_box_img {
  border: 3px solid #442B00;
}
.bee_trim_hone_expert_section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5AC 100%);
}
.orange_brown {
    color: #784C00 !important;
}
.bbth_number h2 {
  color: #DCDCDC66;
  font-size: 108px;
  font-family: "Amiri";
  font-weight: 600;
  line-height: 54px;
  margin-bottom: -1.6rem;
  z-index: -1;
  position: relative;
}
.naturally_strong_hair_section .natural_digestive_care_box {
    min-height: auto;
}
/*============|| bee trim honey styling end ||============*/


/*============|| Power Prash styling start ||============*/

.power_prash_home_section {
  background-image: url("../img/power_prash_banner_bgimg_1.png"), url("../img/power_prash_banner_bgimg_2.png"), url("../img/power_prash_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #F0F0F0 0%, #ADADAD 92.21%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  background-position: 0% 100%, 100% 0%, 100% 88%, center;
  min-height: 630px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ppbp_icon {
  background: #F7F7F7;
  width: fit-content;
  height: fit-content;
  padding: 15px;
}
.power_prash_key_ingredients {
    background: #C6C6C6;
}
.power_prash_key_ingredients .gc_key_ingredient_box_cont h2 {
  color: #000;
}
.power_prash_key_ingredients .gc_key_ingredient_box_img {
  border: 3px solid #000;
}
/*============|| Power Prash styling end ||============*/


/*============|| Beauty Prash styling start ||============*/

.beauty_prash_home_section {
  background-image: url("../img/beauty_prash_banner_bgimg_1.png"), url("../img/beauty_prash_banner_bgimg_2.png"), url("../img/beauty_prash_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFDFED 7.79%, #FF71AD 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, cover;
  background-position: 0% 100%, 100% 0%, 100% 88%, center;
  min-height: 630px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.deeppink_color {
    color: #9F0142 !important;
}

.beauty_prash_key_ingredients {
  background: #F276A0;
}
.beauty_prash_expert_section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFDBEB 100%);

}

/*============|| Beauty Prash styling end ||============*/

/*============|| ginger-curcumin-honey styling start ||============*/

.ginger_curcumin_honey_home_section {
    background-image: url("../img/ginger_curcumin_banner_bgimg_1.png"), url("../img/ginger_curcumin_banner_bgimg_2.png"), url("../img/ginger_curcumin_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFF3D4 7.79%, #FFD361 100%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.ginger_curcumin_honey_key_ingredients {
    background: #9F8952;
}
.ginger_curcumin_honey_expert_section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF2D2 100%);
}

.dark_orange_color {
    color: #6F2B00 !important;
}
.wcgch_icon {
    background: #FFF5DC;
  width: fit-content;
  height: fit-content;
  padding: 15px;
}
.ginger_curcumin_honey_key_ingredients .gc_key_ingredient_box_cont h2 {
  color: #401900;
}
.ginger_curcumin_honey_key_ingredients .gc_key_ingredient_box_img {
  border: 3px solid #401900;
}
/*============|| ginger-curcumin-honey styling end ||============*/

/*============|| shilajit styling start ||============*/

.shilajit_gold_benefits_img {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, #FFEFCB 100%);
  border-image-source: linear-gradient(180deg, rgba(222, 149, 61, 0.2) 0%, rgba(255, 240, 206, 0.1) 100%);
  box-shadow: 0px 30px 60px 0px #8989892E;
  border-radius: 100%;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
}

.shilajit_gold_benefits_img:hover {
  background: linear-gradient(180deg, #FFEFCB 0%, rgb(255, 255, 255) 100%);
}
.shilajit_gold_benefits_img:hover img {
  background: #ffd59a;
}

.shilajit_gold_benefits_img img {
  box-shadow: 0px 20px 90px 0px #0000001A;
  background: #FFF;
  border-radius: 20px;
  width: 110px;
  height: 110px;
  padding: 25px;
}

.shilajit_gold_benefits_img::after {
  content: "";
  background: linear-gradient(180deg, #FFEFCB 0%, rgba(255, 246, 226, 0) 100%);
  position: absolute;
  border-radius: 100%;
  width: 355px;
  height: 355px;
  z-index: -1;
}
.clients_ratings_section {
  background: #FFE28B;
}
.clients_worldwide_right h2 {
    color: #864D08;
    font-size: 60px;
}
.clients_ratings li {
    color: #864D0880;
}
.clients_ratings li.active {
    color: #864D08;
}
.clients_worldwide_right p {
    color: #333333;
    font-size: 20px;
}
.clients_worldwide_left h2 {
  font-weight: 400;
  font-size: 38px;
  line-height: 50px;
}

.shilajit_royal_different_section {
  background: #6A6A6A;
}
.bronze_color {
    color: #603400 !important;
}
.bronze_light_color {
    color: #B46900 !important;
}
.shilajit_key_ingredients {
  background: #FBC684;
}
.shilajit_key_ingredients p {
    color: var(--text, #5C5C5C);
}
.shilajit_royal_section h2.heading_title {
  color: #C49300;
  font-size: 60px;
  font-weight: 500;
}
.benefits_well_pro_protein_powder.shilajit_royal_section .benefits_well_pachan_img {
  width: 47%;
}
.how_shilajit_royal_works {
    background: #FFFBF5;
}
.how_shilajit_royal_works .tw_benefits_box_icon {
  border: 1px solid #333;
}
.how_shilajit_royal_works .twb_icon {
  background-color: #FFFBF5;
}

/*============|| shilajit styling end ||============*/



/* custom header menu start */

.mega_menu .mega_menu_list{
    position: absolute;
    opacity: 0;
    /* max-width: 980px; */
    width: 100%;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.25s linear;
    background-color: var(--white);
    border: none;
    box-shadow: 0px 15px 50px 0px rgb(82 63 105 / 15%);
    border-radius: 6px;
    padding: 25px 0px;
    left: 50%;
    transform: translateX(-50%);
}
.mega_menu:hover .mega_menu_list{
  opacity: 1;
  visibility: visible;
}
.mega_menu_list_right_list li a{
    padding: 11px 30px;
    color: var(--black, #000000);
    font-weight: 400;
    font-size: 16px;
    white-space: normal;
}
.mega_menu_list_right_list li a:hover {
    background-color: #f8f9fa;
}
.mob_menulist li a.active{
  color: var(--primary-color);
}
.header_menu_img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #8c025536;
  background: #f9e8f2;
  padding: 13px;
}
.header_menu_img img {
    border-radius: 10px;
}
/* custom header menu end */



/*============|| Well Diet styling start ||============*/
.well_heart_home_section {
    background-image: url("../img/well_livo_home_banner_bgimg_1.png"), url("../img/well_livo_home_banner_bgimg_2.png"), url("../img/well_livo_home_banner_bgimg_3.png"), radial-gradient(100% 100% at 50% 0%, #FFE3F6 0%, #F8B1FF 92.21%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto, cover;
    background-position: 0% 100%, 100% 0%, 100% 88%, center;
    min-height: 630px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.wine_purple {
    color: #890069 !important;
}

.ayurveda_for_healthier_heart_section .natural_digestive_care_box {
    min-height: auto;
}
.ayurveda_for_healthier_heart_section .saffron_authentic_box {
  height: 100%;
  padding: 24px;
  border: 1px solid #E170EB;
  box-shadow: none;
}
.ayurveda_for_healthier_heart_section .gc_key_ingredient_box_cont h2 {
    font-size: 20px;
    color: #000;
}
.ayurveda_for_healthier_heart_section .ppb_icon {
  background: #FEF3FF;
}
.ayurveda_for_healthier_heart_section .saffron_authentic_box:hover {
  background-color: #FEF3FF;
}
.ayurveda_for_healthier_heart_section .saffron_authentic_box:hover .ppb_icon {
  background: #E170EB;
}
.ayurveda_for_healthier_heart_section .saffron_authentic_box:hover .ppb_icon img {
  filter: grayscale(9) brightness(9);
}
.ayurveda_for_healthier_heart_section .gc_key_ingredient_box_cont p {
  font-size: 16px;
  color: var(--text, #5C5C5C);
}
.well_heart_key_ingredients {
  background-color: #9F5297;
}
.well_heart_key_ingredients .gc_key_ingredient_box_img {
  border: 3px solid #000000;
}
.well_heart_key_ingredients .gc_key_ingredient_box_cont h2 {
  color: #000;
}
.well_heart_expert_section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFDBEB 100%);
}
/*============|| Well Diet styling end ||============*/
