@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,600&display=swap');


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tbody, tfoot, thead,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, rubsey, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-weight: normal;
}

body, input, textarea, select {
    font-family: 'Poppins', sans-serif;
}


body {
    font-size: 16px;
    color: #6a6a6a;
    line-height: 150%;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #25babd;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


a {
    color: inherit;
    text-decoration: none;
    display: block;
}

    a:focus, a:hover {
        color: inherit;
        text-decoration: none;
        outline: none;
    }


h1 {
    font-size: 50px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #6a6a6a;
}

h2 {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #6a6a6a;
}

h3 {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    color: #25babd;
}

h4 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

h5 {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #25babd;
}

h6 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #6a6a6a;
}

.clear {
    clear: both;
    font-size: 0;
    line-height: 0;
}


img {
    width: 100%;
    height: auto;
}


/*header start*/

.header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

header#header {
    padding: 0px 5%;
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0 8px #5b7270;
}

.logo {
    width: 20%;
    height: auto;
    display: block;
    overflow: hidden;
    padding: 5px 0;
}
    .logo h3 {
        font-size: 27px;
        line-height: 2;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        color: #25babd;
    }
    .navigation {
    width: 80%;
    height: auto;
    text-align: right;
    overflow: hidden;
    margin: auto;
}

ul.nav-bar {
    display: inline-flex;
    flex-direction: row;
    list-style: none;
}

    ul.nav-bar li a {
        display: block;
        padding: 20px 10px;
        background: none;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 2px solid #fff;
        text-align: center;
    }

        ul.nav-bar li a:hover {
            background: none;
            color: #25babd;
            border-bottom: 2px solid #25babd;
        }

    ul.nav-bar li {
        margin: 0 5px;
    }


.dfmBanner {
    margin-top: 55px;
}

.menu-container {
    cursor: pointer;
}

.bar1 {
    height: 4px;
    width: 30px;
    background-color: #25babd;
    border-radius: 12px;
    transition: 400ms ease all;
}

.bar2 {
    height: 4px;
    width: 30px;
    background-color: #25babd;
    border-radius: 12px;
    transition: 400ms ease all;
    margin-top: 6px;
}

.bar3 {
    height: 4px;
    width: 30px;
    background-color: #25babd;
    border-radius: 12px;
    transition: 400ms ease all;
    margin-top: 5px;
}

.bar4 {
    height: 4px;
    width: 30px;
    background-color: #25babd;
    border-radius: 12px;
    transition: 400ms ease all;
    margin-top: -13px;
}

.bar5 {
    height: 4px;
    width: 30px;
    background-color: #25babd;
    border-radius: 12px;
    transition: 400ms ease all;
    margin-top: -4px;
}

.change .bar1 {
    opacity: 0;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    opacity: 0;
}

.change .bar4 {
    transform: rotate(45deg);
}

.change .bar5 {
    transform: rotate(-45deg);
}

.menu-container {
    position: absolute;
    right: 16px;
    top: 15px;
}

img.logo-img {
    width: 60px;
    height: auto;
    max-width: 100%;
    /* margin: 0 auto; */
}

span.down {
    display: block;
    float: right;
    margin: 0px 0 0 2px;
    font-size: 22px;
    float: right;
    right: 0;
}

ul.dropdown-nav {
    width: 250px;
    display: block;
    position: absolute;
    background: #fff;
    padding: 0px 0 15px 0;
    display: none;
    list-style: none;
}


li.dropdown-lst:hover ul.dropdown-nav {
    display: block;
}

ul.dropdown-nav li a {
    display: block;
    padding: 10px;
    margin: 3px 0;
    text-align: left;
}


/*banner start*/

.banner-content {
    width: 520px;
    max-width: 95%;
    position: absolute;
    top: 30%;
    /* margin: auto auto; */
    left: 5%;
}

    .banner-content h1 {
        font-size: 55px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

h1 span {
    color: #25babd;
    font-weight: 700;
    /*	font-style: italic;*/
}

p.organic {
    color: #25babd;
    margin-bottom: 0;
    font-size: 18px;
}

p span {
    font-weight: bold;
}
/*.tab-content a.know-more{
    margin: 5px 20px;
}*/
a.know-more {
    display: block;
    font-size: 14px;
    color: #25babd;
    padding: 5px;
    background: none;
    margin: 20px 0;
    border: 1px solid #25babd;
    width: 120px;
    text-align: center;
    border-radius: 30px;
    outline: none;
}

    a.know-more:hover {
        color: #fff;
        border: 1px solid #25babd;
        background: #25babd;
    }

.why-left ul:last-child {
    border-bottom: 1px solid #00000038;
}

/*depots starts*/
.depots-dp {
    background: #e4eeef;
    padding: 0px 0 180px 0;
}

.row.row-base {
    margin-top: 120px;
}

ul.depost-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    background: #fff;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 20px 0;
    margin-top: -71px;
    margin-bottom: 50px;
    box-shadow: 4px 3px 12px #ccc;
}

    ul.depost-list li {
        width: 33.3%;
        text-align: center;
        border-right: 2px solid #ccc;
    }

        ul.depost-list li:last-child {
            border-right: none;
        }

    ul.depost-list h1 {
        font-size: 55px;
        margin: 0;
        color: #00bcbe;
    }

    ul.depost-list li p {
        font-size: 18px;
        color: #484848;
    }

.key-feture-right p {
    font-size: 18px;
    margin: 0px 0;
}

    .key-feture-right p.paragraph {
        margin: 15px 0 25px 0;
    }

.image-gallery {
    width: 100%;
    padding: 10% 0;
}

.image-gallery {
    width: 100%;
    padding: 0;
}

img.third {
    position: absolute;
    right: 25px;
    top: 0;
    width: 370px;
}

img.first {
    width: 380px;
    position: absolute;
    left: 0;
    top: 180px;
}

img.second {
    width: 91%;
    margin: 70px 0 -50px -50px;
}

img.third-send {
    position: absolute;
    right: 25px;
    top: 0;
    width: 500px;
}

img.first-send {
    width: 370px;
    position: absolute;
    left: 0;
    top: 265px;
    z-index: 9;
}

img.second-send {
    width: 83%;
    margin: 123px 0 -47px 22px;
}

h2 span {
    color: #25babd;
    font-weight: 700;
}

.key-feture-right {
    padding: 4% 0 0 30px;
}

.sub-key-feature {
    background: #fff;
    padding: 90px 0 140px 0;
}

    .sub-key-feature .key-feture-right {
        padding: 30px 30px 0 0;
    }






/*.key-category start*/

.key-category {
    background: #fff;
    padding: 90px 5%;
}

.tab.left-antiace {
    width: 25%;
    height: auto;
}

.tab-content {
    width: 73%;
    height: auto;
    padding: 20px 0;
    margin: auto auto;
}

.antiace {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tab-contnt-first {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-tab-cont {
    width: 50%;
    height: auto;
    margin: auto auto;
    padding-right: 30px;
}

.left-tab-img-p {
    width: 40%;
    height: auto;
}

.left-tab-cont p {
    text-align: justify;
}

.left-tab-cont p {
    text-align: justify;
    width: 75%;
}

ul.ant-ace {
    font-size: 18px;
    padding: 4px 0 5px 17px;
}

    ul.ant-ace li {
        padding: 13px 0;
    }

ul.what-we-do {
    font-size: 18px;
    padding: 4px 0 5px 17px;
}

    ul.what-we-do li {
        padding: 13px 0;
    }

ul.antiace-nav {
    list-style: none;
    font-size: 25px;
    background: #00bcbe;
    width: 100%;
    border-radius: 20px;
    padding: 20px 0;
    color: #fff;
}

    ul.antiace-nav li {
        cursor: pointer;
        padding: 2px 8px;
        margin-bottom: 10px;
        margin-top: 10px;
        font-size: 18px;
    }

        ul.antiace-nav li:hover {
            background: #267678;
        }

li.active {
    background: #267678;
    width: 108%;
    margin-left: -8%;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 0 5px #5e5656;
}

img.down-arrow {
    width: 18px;
}

ul.antiace-nav li img {
    width: 40px;
    height: auto;
    margin: 10px 8px 10px 1px;
}

.tab-content .tab-1 {
    display: none;
}

    .tab-content .tab-1.active {
        display: block;
    }

/*product slider start*/
.product-range {
    background: #e4eeef;
    padding: 90px 5% 55px 5%;
}


.why-fem-pharma {
    background-image: url('/home/why-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    padding: 0;
}

.prodct {
    background: none;
    border-radius: 10px;
    height: auto;
    text-align: center;
    padding: 10px;
}

    .prodct:hover {
        box-shadow: 0 0 10px #b3b0b0;
        cursor: pointer;
        background: #fff;
    }

.img-prodct {
    max-height: 260px;
    height: 260px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 6px;
    overflow: hidden;
}

    .img-prodct img {
        width: 100%;
        height: 100%;
    }

.prodct-txt {
    width: 100%;
    height: 175px;
    background: none;
    padding: 0 10px;
    overflow: hidden;
}

    .prodct-txt h5 {
        font-size: 22px;
        color: #6a6a6a;
        font-weight: 600;
        display: -webkit-box;
        max-width: 100%;
        height: 60px;
        margin: 0 auto;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 5px;
    }

    .prodct-txt p {
        font-size: 15px;
        color: #6a6a6a;
        display: -webkit-box;
        max-width: 100%;
        height: 43px;
        margin: 0 auto;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }



a.view-more {
    display: block;
    font-size: 14px;
    padding: 5px;
    color: #25babd;
    border: 1px solid #25babd;
    width: 120px;
    border-radius: 30px;
    margin: 0px auto;
    margin-top: 15px;
}

    a.view-more:hover {
        color: #fff;
        background: #25babd;
        border: 1px solid #25babd;
    }

.productSlider .item {
    padding: 15px;
}

.img-prodct img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}




.productSlider .owl-nav .owl-prev:before {
    font-weight: 200;
    position: absolute;
    top: 40%;
    left: -3%;
    content: url(/home/left.png);
}

.productSlider .owl-nav .owl-next:before {
    font-weight: 200;
    position: absolute;
    content: url(/home/right.png);
    top: 40%;
    right: -3%;
}


button.owl-next span, button.owl-prev span {
    display: none;
}


.heading-text p {
    font-size: 18px;
    margin: 15px 10px 50px 10px;
}

.heading-text {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}



/*Why choose fem pharma start*/

.why-left {
    height: auto;
    padding: 122px 120px 120px 0;
}

.why-right {
    height: 550px;
    padding: 122px 0 120px 100px;
}


ul.why-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid #00000038;
    padding-left: 25px;
}

    ul.why-list li {
        /* display: block; */
        width: 50%;
        padding: 30px;
        color: #fff;
        font-size: 20px;
        margin-bottom: 10px;
        list-style: disc;
        padding-left: 0px;
    }

.why-left h2 {
    color: #fff;
    margin-bottom: 30px;
}

.why-right h2 {
    color: #fff;
    margin-bottom: 10px;
}

.why-right p {
    margin-bottom: 25px;
    color: #fff;
}

.why-right h5 {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin: 12px 0 20px;
}

.right ul.footer-contct {
    color: #6a6a6a;
}



/*footer start*/
.footer {
    background: #fff;
    padding: 80px 0 0 0;
}

img.footer-logo {
    width: 90px;
    /* margin: 6px auto; */
    margin-bottom: 15px;
}

.left {
    text-align: center;
    /* padding: 0 34px; */
}

ul.social-media {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 15px;
}

    ul.social-media li {
        margin: 0 7px;
    }

        ul.social-media li a {
            display: block;
        }

ul.about-service {
    list-style: none;
}

    ul.about-service li a {
        display: block;
        font-size: 18px;
        padding: 5px 0;
        margin-bottom: 2px;
        font-weight: 500;
    }

.company {
    width: 46%;
}

.center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

ul.footer-contct {
    display: inline-block;
    list-style: none;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
}

    ul.footer-contct li {
        margin-bottom: 10px;
        padding: 5px 0;
        display: flex;
        font-size: 16px;
        font-weight: 400;
    }

    ul.footer-contct img {
        width: 28px;
        height: 26px;
        margin-right: 15px;
    }

ul.social-media li img {
    width: 40px;
    height: 40px;
}


.banner-content h1 span {
    font-weight: 700;
    font-style: italic;
}

/*product listing start*/

.product-banner {
    background-image: url('/assets/product-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 165px 0 80px 0;
    text-align: center;
    color: #fff;
}

    .product-banner h1 {
        color: #fff;
        font-weight: 600;
    }

.listing-item ul li {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.listing-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-navigation {
    min-width: 270px;
    max-width: 270px;
    flex: 1 1 0%;
    height: auto;
    padding: 20px 0;
}

.right-list-item {
    padding-left: 0;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    padding: 10px 0px 0 30px;
    border-left: 2px solid #6a6a6a;
}

ul.product-list-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

    ul.product-list-item li {
        width: 280px;
        padding: 5px;
        margin-bottom: 10px;
    }

.prodct-listing {
    padding: 100px 5%;
    background: #fff;
    border-bottom: 2px solid #6a6a6a;
}

.left-navigation h3 {
    font-size: 25px;
    font-weight: 500;
    margin: 0px 0 30px 10px;
}
/*.left-navigation {
    background: #f5f5f5;
}*/

ul.filter-prodct li a {
    display: block;
    font-size: 20px;
    padding: 10px 10px 10px 25px;
    margin-bottom: 10px;
    /*    background: #ccc;*/
}

ul.filter-prodct li.active {
    /*    background: #25babd;*/
    width: 100%;
    color: #fff;
}

ul.filter-prodct li:hover {
    background: #f1f1f1;
    color: #6a6a6a;
}

ul.filter-prodct li.active {
    width: 100%;
    border-radius: 0px;
    box-shadow: none;
    background: #25babd;
}

.menu-bar {
    display: block;
    text-align: left;
    padding: 10px;
}

img.menu-bar {
    width: 50px;
    height: auto;
}


.product-details-banner {
    background-image: url('/assets/product-details-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 165px 0 80px 0;
    text-align: center;
    color: #fff;
}

    .product-details-banner h1 {
        color: #fff;
        font-weight: 600;
    }

.product-detls {
    padding: 100px 0 30px 0;
}

.main-img-left {
    background: #f1f1f1;
    text-align: center;
    width: 100%;
    padding: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.general-content {
    padding: 20px 30px;
}

    .general-content h1 {
        font-weight: 600;
        color: #25babd;
        text-transform: uppercase;
        font-size: 40px;
    }

    .general-content h3 {
        font-size: 28px;
        font-weight: 600;
        /* margin-top: 16px; */
        text-transform: uppercase;
    }

    .general-content p {
        margin-bottom: 20px;
    }

p.weight {
    font-size: 22px;
    padding: 3px 0 5px 0;
    margin: 0;
}

    p.weight span {
        color: #25babd;
        font-weight: 600;
    }

.general-content ul {
    font-size: 16px;
    list-style: disc;
    margin: 13px 0 20px 28px;
}

    .general-content ul li {
        padding: 4px;
    }

.related-product {
    background: #e4eeef;
    padding: 90px 5% 55px 5%;
}

.general-banner {
    background-image: url('/assets/2-general.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 165px 0 80px 0;
    text-align: center;
    color: #fff;
}

    .general-banner h1 {
        color: #fff;
        font-weight: 600;
    }
.careers-banner {
    background-image: url('/assets/careers.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 165px 0 80px 0;
    text-align: center;
    color: #fff;
}


    .careers-banner h1 {
        color: #fff;
        font-weight: 600;
    }

.contact-us-banner {
    background-image: url('/assets/about-home/contact-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 165px 0 80px 0;
    text-align: center;
    color: #fff;
}


    .contact-us-banner h1 {
        color: #fff;
        font-weight: 600;
    }

.contact-p {
    background: #25babd;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

    .contact-p h4 {
        font-size: 40px;
        color: #fff;
        font-weight: 500;
        margin-bottom: 30px;
        font-style: italic;
    }

ul.contct-lst {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
}

    ul.contct-lst li {
        width: 310px;
        text-align: center;
        padding: 18px 20px;
        margin-top: 20px;
    }

        ul.contct-lst li h6 {
            font-size: 22px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 500;
            margin: 20px 0 6px 0;
        }

        ul.contct-lst li p {
            color: #fff;
            font-size: 15px;
        }

        ul.contct-lst li img {
            width: 50px;
            height: auto;
        }

    ul.contct-lst li {
        border-right: 2px solid #fff;
    }

        ul.contct-lst li:last-child {
            border-right: none;
        }

.mapping {
    padding: 100px 0;
    border-bottom: 2px solid #6a6a6a;
}

.footer .left p {
    font-size: 16px;
}

.forms {
    padding: 20px 50px;
}

    .forms h3 {
        font-size: 40px;
        text-transform: uppercase;
    }



.form-link {
    width: 100%;
}

input.form-controls {
    font-size: 16px;
    padding: 8px 17px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #25babd;
    margin-bottom: 22px;
    color: #25babd;
    outline: none;
    height: 42px;
}

textarea.text-area {
    font-size: 17px;
    padding: 15px 17px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #25babd;
    margin-bottom: 15px;
    color: #25babd;
    outline: none;
}

a.submit-text {
    display: block;
    padding: 10px 20px;
    background: #25babd;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0;
}

    a.submit-text img {
        width: 25px;
        margin: 0 10px 0 0;
    }

.error {
    font-size: 13px;
    position: absolute;
    left: 9px;
    color: red;
    font-weight: 400;
    margin: -23px 0 0 10px;
    display: block;
}


/*about start*/

.about-us-banner {
    background-image: url('/home/about-us-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 230px 0 0px 0;
    text-align: center;
    color: #fff;
    height: 550px;
}

    .about-us-banner h1 {
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 0;
    }

        .about-us-banner h1.we-are {
            font-weight: 700;
        }

.about-fem-pharma {
    padding: 100px 0;
    background: #fff;
}

.about-fem-vision {
    padding: 100px 0;
    background: #e4eeef;
}

.visions {
    /* margin: auto auto; */
    padding: 50px;
}

.our-vison {
    margin-top: 16%;
}

p.fem-we-have {
    font-size: 22px;
    color: #25babd;
    margin-bottom: 20px;
}

ul.about-lst {
    font-size: 18px;
    color: #6a6a6a;
    padding: 4px 29px;
}

    ul.about-lst li {
        padding: 4px 0px;
    }

.our-vison-about {
    padding: 15px 50px 0 20px;
}

.our-values {
    text-align: center;
    padding: 90px 0 10px 0;
}

.our-philosophy {
    padding: 90px 0 50px 0;
    background: #fff;
    text-align: center;
}

p.fem-skin-anovate {
    font-size: 22px;
    width: 70%;
    margin: 0 auto;
    font-weight: 500;
    margin-bottom: 30px;
}

img.pack {
    width: 100px;
    height: auto;
    margin: 10px 0;
}

img.pack-red {
    width: 100px;
    height: auto;
    margin: 10px 0;
}

img.pack-red {
    display: none;
}

ul.formulation {
    list-style: none;
    padding: 0px;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

    ul.formulation h6 {
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        color: #6a6a6a;
    }



    ul.formulation li {
        width: 260px;
        text-align: center;
        padding: 40px 0;
        margin: 10px;
    }

        ul.formulation li:hover {
            text-align: center;
            padding: 40px 0;
            margin: 10px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px #ccc;
            cursor: pointer;
        }

            ul.formulation li:hover img.pack-red {
                display: block;
                margin: 10px auto;
            }

            ul.formulation li:hover img.pack {
                display: none;
            }

            ul.formulation li:hover h6 {
                color: #25babd;
            }

.our-relation {
    text-align: center;
    padding: 0px 0 40px 0;
}

.our-philosopher {
    padding: 90px 0 0px 0;
    background: #e4eeef;
    text-align: center;
}

.girl-skins {
    width: 100%;
    /* background: #ccc; */
    /* border-radius: 30% 30% 0 0; */
    overflow: hidden;
    margin-top: 30px;
}




/*general information page start*/

.general-info {
    padding: 30px 0;
    background: #fff;
    border-bottom: 2px solid #6a6a6a;
}

    .general-info ul {
        list-style: disc;
        margin-left: 30px;
    }

    .general-info h2 {
        font-size: 25px;
        font-weight: 600;
        margin: 20px 0 8px 0;
        color: #25babd;
    }

    .general-info ul li {
        padding: 5px 0;
    }

    .general-info b {
        font-weight: 600;
        color: #000;
    }

    .general-info a {
        color: #25babd;
        display: contents;
    }

p.copy-right {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    margin: 50px 0 0 0;
    font-size: 14px;
    color: #000;
}

a.refreshCaptcha {
    display: block;
    font-size: 13px;
    margin: 3px 0 11px 0;
    cursor: pointer;
}

span.shareds {
    display: inline-block;
}

    span.shareds i {
        font-size: 26px;
        cursor: pointer;
        margin: 0 11px;
        color: #000000;
        padding: 10px;
    }

.sharePopup {
    opacity: 0;
}

.socialShare:hover .sharePopup {
    opacity: 1;
}

.sharePopup ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #25babd;
    border-radius: 10px;
    position: absolute;
    right: 0;
}

.socialShare {
    position: absolute;
    top: 35px;
    right: 0;
    display: block;
}

.sharePopup ul li a {
    display: block;
    padding: 5px 13px;
    margin: 0 3px;
    color: #fff;
    font-size: 20px;
}

.sharePopup ul li:hover a {
    color: #000;
}

.sharePopup ul {
    list-style: none;
}

span.shareds:hover i {
    color: #25babd;
}

.productSlider .owl-carousel .owl-item img {
    width: 96%;
    max-width: 96%;
}




/*career start*/

.career-banner {
    background-image: url('/home/contact-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 165px 0 80px 0;
    text-align: center;
    color: #fff;
}


    .career-banner h1 {
        color: #fff;
        font-weight: 600;
    }

.career {
    padding: 50px 0;
}

.form-fields-career span.error {
    display: block;
    left: 15px;
}

a.resume-submt {
    display: block;
    padding: 12px;
    font-size: 18px;
    text-transform: uppercase;
    background: #25babd;
    margin: 20px auto;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    width: 300px;
}

.why-us-p h2 {
    font-size: 35px;
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: 25px;
}

.why-us-p p {
    margin-bottom: 20px;
}

.why-us-p h2 span {
    color: #25babd;
}

select.select-op {
    font-size: 17px;
    padding: 10px 17px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #25babd;
    margin-bottom: 22px;
    color: #25babd;
    outline: none;
}

a.submit-text:hover, a.resume-submt:hover {
    background: #1b989b;
}
/*.row.careerRow {
    padding: 0 13%;
}*/



/*store locator start*/



.store-locator-banner {
    background-image: url('/home/store-locator.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 165px 0 80px 0;
    text-align: center;
    color: #fff;
}


    .store-locator-banner h1 {
        color: #fff;
        font-weight: 600;
    }

.store-locator {
    padding: 50px 0;
}

.distribution-retail {
    padding: 80px 0;
    border-bottom: 2px solid #6a6a6a;
}

    .distribution-retail h2 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #25babd;
        font-weight: 600;
    }

ul.disti-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background: #25babd;
    color: #fff;
    text-align: center;
    width: 65%;
    margin: 0 auto;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 50px;
}

    ul.disti-list h1 {
        color: #fff;
        line-height: 1;
        margin-bottom: 0;
    }

    ul.disti-list p {
        color: #fff;
        margin-bottom: 0;
    }

    ul.disti-list li {
        padding: 20px 0px;
        width: 33.34%;
        text-align: center;
        border-right: 2px solid #fff;
    }

.container-fluid.general-info-ster {
    padding: 80px 0;
}

.forms-store h2 {
    font-size: 30px;
    font-weight: 600;
    color: #25babd;
}

.form-link-store {
    display: flex;
    flex-direction: row;
    justify-content: start;
}

input#CPH1_txtSearch {
}

input.form-controls-store {
    border: none;
    border: 1px solid #ccc;
    padding: 8px 15px;
    font-size: 16px;
    width: 300px;
    max-width: 70%;
}

input.submit-texted {
    border: none;
    width: 150px;
    font-size: 17px;
    color: #fff;
    background: #25bac3;
    margin: 0 20px;
    border-radius: 30px;
    outline: none;
    /* border: 1px solid #6a6a6a; */
}


ul.product-list-item-store {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

    ul.product-list-item-store li {
        width: 345px;
        height: 250px;
        margin: 10px 5px;
        padding: 20px;
        overflow-x: hidden;
        overflow-y: auto;
        background: #fff;
        border-radius: 4px;
    }

        ul.product-list-item-store li .prodct-txt {
            height: auto;
        }

        ul.product-list-item-store li .prodct {
            padding: 20px;
        }

.prodct-txt h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
}

.prodct-txt-store h3 {
    font-size: 20px;
    font-weight: 600;
    color: #6a6a6a;
}

.prodct-store {
    /* padding: 20px; */
    /* background: #f1f1f1; */
}

ul.product-list-item-store li:hover {
    box-shadow: 0 0 10px #ccc;
    /*cursor: pointer;*/
    background: #fff;
    border-radius: 4px;
}

.prodct-txt-store p {
    margin-bottom: 4px;
    font-size: 15px;
}

.forms .error {
    left: 47px;
}

span#CPH1_lblTotal {
    font-size: 17px;
    display: block;
    margin: 10px 0;
    color: #25bac3;
    font-weight: 500;
}

span#CPH1_RegularExpressionValidator1 {
    font-size: 13px;
    position: absolute;
    /* top: 2px; */
    color: #ff0000;
    margin: -20px 0 0 5px;
}

a.refreshCaptcha {
    position: absolute;
    margin: -30px 0 0 100px;
    color: #25babd;
}

.apply-no {
    padding: 20px 0 10px 15px;
}

.forms p {
    margin-bottom: 30px;
}

.forms-store {
    padding: 0;
}

.carer-fem-fm h3 {
    font-weight: 600;
    margin-bottom: 22px;
}

.career-with-fm h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

/*We are Fem Pharma slider Section By Emran*/

.femPharmaSlider .item {
    padding: 15px;
}
.femPharma-slider {
    background: #fdfdfd;
    padding: 90px 5% 55px 5%;
}
.femPharmaSlider .owl-nav .owl-prev:before {
    font-weight: 200;
    position: absolute;
    top: 40%;
    left: -3%;
    content: url(/home/left.png);
}
.femPharmaSlider .owl-nav .owl-next:before {
    font-weight: 200;
    position: absolute;
    content: url(/home/right.png);
    top: 40%;
    right: -3%;
}

.femPharmas {
    border-radius: 10px;
    height: auto;
    text-align: center;
    padding: 10px;
    box-shadow: 0 0 5px #b3b0b0;
    background: #25babd;
}
    .femPharmas:hover {
        box-shadow: 0 0 10px #b3b0b0;
        cursor: pointer;
        background: none;
    }
.femPharmas-txt {
    width: 100%;
    height: 175px;
    background: none;
    padding: 0 10px;
}
    .femPharmas-txt p {
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        display: -webkit-box;
        max-width: 100%;
        height: 100%;
        margin: 100px 0px 0 0;
    }
        .femPharmas-txt p:hover {
            color: #6a6a6a;
        }

/*Added New section Slider*/
/*.container1 {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-wrap: wrap;*/
/* height: 97vh;*/
/*}*/
.container1 .box {
    width: auto;
    height: 252px;
    border-radius: 10px;
    background-color: #25babd;
    margin: 28px 0px 0px 0px;
    transition: 0.3s all ease-in-out;
    position: relative;
    box-shadow: 0px 0px 15px background;
}

    .container1 .box .boxContent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

        .container1 .box .boxContent .desc {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            padding: 47px 0 0 0;
        }

    .container1 .box:hover {
        background: linear-gradient(130deg, #efeff0 0%, #fafafa 100%);
        box-shadow: none;
    }

        .container1 .box:hover .desc {
            color: #6a6a6a;
            transition: 0.3s all ease-in-out;
        }
.spanlogo {
    display: inline-flex;
    width: 22%;
}
.spanlogo2 {
    display: inline-flex;
    width: 10%;
}

.distribution-retail {
    padding: 80px 0;
    border-bottom: 3px solid #6a6a6a;
}

    .distribution-retail h2 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #25babd;
        font-weight: 600;
    }

ul.disti-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background: #25babd;
    color: #fff;
    text-align: center;
    width: 65%;
    margin: 0 auto;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 50px;
}

    ul.disti-list h1 {
        color: #fff;
        line-height: 1;
        margin-bottom: 0;
    }

    ul.disti-list p {
        color: #fff;
        margin-bottom: 0;
    }

    ul.disti-list li {
        padding: 20px 0px;
        width: 33.34%;
        text-align: center;
        /*    background: red;*/
        border-right: 2px solid #fff;
    }

@media(max-width:992px) {
    ul.disti-list {
        width: 100%;
    }

    .distribution-retail {
        padding: 50px 0;
    }
}