/********** Template CSS **********/
:root {
    --primary: #007453;
    --secondary: #55bf94fd;
    --light: #ffffff;
    --dark: #0b0b0a;
    --brown: brown;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.one-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
    border-radius: 4px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/* ******************** Section Tile Start ************************ */

.section-title h3 {
    color: var(--primary);
    text-shadow: 2px 3px 4px var(--secondary);
}

.section-title h3::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--brown);
}

.section-title h3::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--primary);
}

/* ******************** Section Tile End ************************ */

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: 0.5s;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

.navbar-light .navbar-brand {
    width: 70px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    outline: none;
    border: none;
}

.navbar .navbar-toggler {
    color: white !important;
    border-color: white !important;
}

.navbar .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    background-image: none;
    position: relative;
    border-bottom: 3px solid var(--primary);
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after,
.navbar .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    content: "";
    /* z-index: 2; */
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-collapse {
        position: absolute;
        background: var(--light);
        height: 100vh;
        width: 234px;
        left: -282px;
        top: 76px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-left: 32px;
        transition: 0.3s linear;
        z-index: 99;
    }

    .navbar-collapse.show {
        top: 76px;
        left: 0px;
    }
}

@media screen and (min-width: 577px) and (max-width: 840px) {
    .navbar-collapse {
        top: 76px;
    }

    .navbar-collapse.show {
        top: 76px;
    }
}

/*** Header ***/

/*  ************************* TOP CATEGORY PRODUCT SECTION ****************  */
#top-categorysection img {
    height: 65px;
    width: 65px;
    display: flex;
    margin: auto;
    border-radius: 4px;
}

#top-categorysection p {
    margin-top: 5px;
    font-size: 15px !important;
    font-weight: 500;
}

@media (min-width: 768px) {
    #top-categorysection .col-md-2 {
        flex: 0 0 auto;
        width: 11%;
    }
}


@media(min-width: 768px){
    #carouselExampleFade{
        height: 250px !important;
        overflow: hidden;
    }
}



/* *************************Product Category Start************************* */
.catagory-product {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

.catagory-image {
    border: 2px solid var(--primary);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    padding: 5px;
}

.catagory-image img {
    border-radius: 50%;
}

.category-name {
    color: var(--primary);
    font-size: 18px;
    font-weight: bolder;
    margin-top: 8px;
}

@media (max-width: 500px) {
    .catagory-image {
        height: 84px;
        width: 84px;
    }

    .category-name {
        font-size: 14px;
    }
}

/* *************************Product Category END************************* */

/* *************************Product Start************************* */

#our-product .product-item {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* background: var(--secondary); */
    border: 2px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
}

#our-product .product-item .product-image {
    overflow: hidden;
    transition: 0.4s ease-in-out;
    border-radius: 16px;
}

#our-product .product-item .product-image .image-second {
    display: none;
}

#our-product .product-item .product-image:hover .image-second {
    display: block;
}

#our-product .product-item .product-image:hover .image-first {
    display: none;
}

#our-product .product-item .product-content {
    background: var(--light);
    border-top: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: column; */
    padding: 10px;
    border-radius: 16px;
}

#our-product .product-item .product-name {
    color: var(--primary);
    font-family: Palatino, serif;
}

#our-product .product-item .product-rating {
    list-style: none;
    color: gold;
    display: flex;
    align-items: center;
    padding-left: 0;
}

#our-product .product-item .product-price {
    color: var(--dark);
}

#our-product .product-item .product-price i {
    color: var(--secondary);
}

#our-product .product-item img {
    transition: 0.5s;
}

#our-product .product-item:hover img {
    transform: scale(1.1);
}

#our-product .product-item a {
    text-decoration: none;
    color: var(--primary);
}

#our-product .product-item .fa-star {
    color: gold;
}

#our-product .product-item a:hover {
    color: var(--primary) !important;
}

/* *************************Product END************************* */

/* *************************Gift product Start************************* */

#perfect-gift .gift-product {
    background: var(--secondary);
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    position: relative;
    margin: 20px auto;
}

#perfect-gift .gift-img {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -khtml-transform: translate(-50%);
    width: 100%;
    padding: 15px;
    transition: all 0.2s ease-in-out;
}

#perfect-gift .gift-img img {
    width: 100%;
    transition: all 0.2s ease-in-out;
    border-radius: 6px;
}

#perfect-gift .gift-product:hover .gift-img {
    top: -32px;
}

#perfect-gift .gift-product:hover .gift-img img {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

#perfect-gift .gift-text {
    padding-top: 108%;
    text-align: center;
}

#perfect-gift .gift-text h5 {
    color: var(--dark);
}

/* *************************Gift product END************************* */

/* *************************Top Seller Start************************* */

#top-seller .seller-item {
    border: 2px solid var(--primary);
    position: relative;
}

#top-seller .seller-item .haighlight {
    position: absolute;
    background: #3F51B5;
    height: 30px;
    width: 140px;
    z-index: 1;
    margin-top: 10px;
    border-radius: 0 20px 20px 0;
    color:white;
    font-size: 15px;
    font-weight: 600;
    padding-left: 15px;
    padding-top: 5px;
    text-transform: uppercase;
}

.seller-info {
    text-align: center;
    background-color:#3F51B5;
    padding: 16px;
}

.seller-info .seller-name {
    color: white;
    font-weight: 600;
    font-size: 20px;
}

/* *************************Top Seller END************************* */

/* *************************good-feature Start************************* */

#good-feature .card {
    border: 1px solid var(--primary);
    background: #00b074;
    border-radius: 16px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.footer_bg{
    background: #007453;
}
#good-feature .card .good-f-icon {
    font-size: 48px;
    margin: 10px;
    color: var(--primary);
}

#good-feature .card h5 {
    color: var(--dark);
    font-weight: 700;
}

#good-feature .card p {
    margin-bottom: 0px;
}

/* *************************good-feature END************************* */

/* ******************** About Start ************************ */

#about .about-img img {
    position: relative;
    z-index: 2;
}

#about .about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transform: skew(20deg);
    z-index: 1;
}

#about i {
    color: var(--primary);
}

#about h2 {
    color: var(--secondary);
    margin-bottom: 21px;
}

/* *************************ABOUT  END************************* */

/* *************************calltoaction  START************************* */

#calltoaction {
    background: var(--primary);
    overflow: hidden;
}

#calltoaction h3 {
    color: var(--light);
    text-transform: capitalize;
    font-size: 32px;
    font-weight: 600;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

#calltoaction a {
    background: var(--light);
    color: var(--black);
    margin-top: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
        rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

#calltoaction a:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* *************************calltoaction  END************************* */

/*** Why Choose Us ***/

.Features .feature-item {
    margin-bottom: 15px;
    position: relative;
    padding-left: 80px;
    padding-right: 30px;
}

.Features .feature-item:last-child {
    margin-bottom: 0;
}

.Features .feature-item .feature-thumb {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: var(--secondary);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
        rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    font-size: 23px;
    line-height: 55px;
    text-align: center;
    color: var(--light);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10px;
}

.Features .feature-item .banner-content {
    /*! padding-left: 34px; */
    display: inline-block;
}

.Features .feature-item .banner-content .title {
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 600;
    line-height: 38px;
}

.Features .feature-item .banner-content p {
    color: #777;
    font-weight: 400;
    font-size: 14px;
    display: block;
    margin-top: 6px;
}

/* *************************jscounter  START************************* */

#jscounter {
    overflow: hidden;
}

#jscounter .card .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#jscounter .card .card-body p {
    font-size: 16px;
    font-weight: bold;
}

#jscounter .card .card-body .icon {
    font-size: 3rem;
}

#jscounter .card-one .card {
    background: #fef6e0;
}

#jscounter .card-two .card {
    background: #e8ebed;
}

#jscounter .card-three .card {
    background: #f0ecf9;
}

#jscounter .card-four .card {
    background: #e7f6f8;
}

#jscounter .fa-hand-holding-dollar {
    color: #f7632e;
}

#jscounter .fa-user-tie {
    color: #1d3b53;
}

#jscounter .fa-cubes {
    color: #6f42c1;
}

#jscounter .fa-face-smile {
    color: #17a2b8;
}

/* *************************jscounter  END************************* */

/* *************************Offer  START************************* */
#offer .coupon-card {
    background: linear-gradient(135deg, #7158fe, #9d4de6);
    color: #fff;
    text-align: center;
    padding: 40px 80px;
    border-radius: 15px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}

#offer .logo {
    width: 80px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#offer .coupon-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--light);
}

#offer .coupon-card p {
    font-size: 15px;
}

#offer .coupon-row {
    display: flex;
    align-items: center;
    margin: 25px auto;
    width: fit-content;
}

#offer #cpnCode {
    border: 1px dashed #fff;
    padding: 10px 10px;
    border-right: 0;
}

#offer #cpnBtn {
    border: 1px solid #fff;
    background: #fff;
    padding: 10px 20px;
    color: #7158fe;
    cursor: pointer;
}

#offer .circle1,
#offer .circle2 {
    background: #f0fff3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#offer .circle1 {
    left: -25px;
}

#offer .circle2 {
    right: -25px;
}

@media (max-width: 876px) {
    #offer .coupon-card {
        padding: 20px 26px;
    }
    #offer #cpnBtn {
        padding: 11px 10px;
        font-size: 15px;
    }
}

/* *************************Offer  END************************* */

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--primary);
}

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

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

@media (max-width: 991.98px) {
    .footer .copyright {
        padding: 10px 0;
        font-size: 12px;
    }

    .footer .copyright a {
        border-bottom: none !important;
    }

    .back-to-top {
        right: 25px;
        bottom: 115px;
    }
}

.footer-mobile {
    background: var(--secondary) !important;
    z-index: 99999;
}

.footer-mobile .icon {
    text-decoration: none;
    color: var(--light);
    border: 3px solid var(--light);
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
}



/* Our store section  */

.bg-widget-img{
    background-image: url('/user/img/bp-store-widget.v1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* our store section End  */
.slider_img{
    height: 300px !important;
    width: 100% !important;
}
.checked {
  color: orange;
}
