html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0 !important;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    overflow-x: hidden;
}

/* width */
body::-webkit-scrollbar {
    width: 4px;
}

/* Track */
body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: #198c40;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
    background: #198c40;
}

.spl-font {
    font-family: "Montserrat", sans-serif;
}


::selection {
    background: #198c40;
    color: #fff;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
    color: #000;
}

/*buttons-start*/
button:focus {
    outline: none !important;
}

.default-btn {
    background: #198c40;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid;
    border-color: #198c40;
    font-weight: 500;
    color: #fff;
    border-radius: 0px;
    padding: 12px 30px;
    transition: 0.3s ease-in-out;
    position: relative;
}

.alt-default-btn {
    background: #1e1e1e;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid;
    border-color: #1e1e1e;
    font-weight: 500;
    color: #fff;
    border-radius: 0px;
    padding: 12px 30px;
    transition: 0.3s ease-in-out;
    position: relative;
}

.new-default-btn {
    background: #fff;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid;
    border-color: #fff;
    font-weight: 500;
    color: #198c40;
    border-radius: 0px;
    padding: 12px 30px;
    transition: 0.3s ease-in-out;
    position: relative;
}

.default-btn:after {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 2px solid #198c40;
    left: -2px;
    top: -2px;
    z-index: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.default-btn:hover:after {
    left: 10px;
    top: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.alt-default-btn:after {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 2px solid #1e1e1e;
    left: -2px;
    top: -2px;
    z-index: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.alt-default-btn:hover::after {
    left: 10px;
    top: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.new-default-btn:after {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 2px solid #fff;
    left: -2px;
    top: -2px;
    z-index: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.new-default-btn:hover::after {
    left: 10px;
    top: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: none;
}

.default-btn:hover,
.default-btn:focus {
    color: #fff;
    background: #198c40;
    border-color: #198c40;
    transition: 0.3s ease-in-out;
}

.alt-default-btn:hover,
.alt-default-btn:focus {
    color: #fff;
    background: #1e1e1e;
    border-color: #1e1e1e;
    transition: 0.3s ease-in-out;
}

.new-default-btn:hover,
.new-default-btn:focus {
    color: #198c40;
    background: #fff;
    border-color: #fff;
    transition: 0.3s ease-in-out;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

/*buttons-end*/

/* custom-heading-start */
.heading-text {}

.heading-text h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    color: #1e1e1e;
    text-transform: uppercase;
}

.heading-text h2 span {
    color: #198c40;
}


@media only screen and (max-width:575px) {
    .heading-text h2 {
        font-size: 32px;
        line-height: 40px;
    }

}

/* custom-heading-end */

/* header-start */

header {}

.pre-header {
    background-color: #ff9800;
}

.ph-left {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    column-gap: 20px;
}

.ph-left a {
    color: #fff;
    position: relative;
    transition: 0.3s ease-in-out;
}

.ph-left a:hover {
    color: #6d16d2;
    transition: 0.3s ease-in-out;
}

.ph-left a:before {
    position: absolute;
    content: "";
    right: -10px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #fff;
}

.ph-left a:last-child:before {
    display: none;
}

.ph-left a i {
    color: #fff;
    text-shadow: 1px 1px #0f0f0f30;
}

.ph-left a:hover i {
    color: #fff;
}

.ph-right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.ph-social {}

.ph-social a {
    color: #ffffff;
    margin-right: 10px;
    transition: 0.3s ease-in-out;
}

.ph-social a i {
    text-shadow: 1px 1px #0f0f0f30;
}

.ph-social a:hover {
    color: #6d16d2;
    transition: 0.3s ease-in-out;
}

.ph-right .default-btn {
    border-radius: 0px;
    height: 50px;
}

.header {
    position: relative;
    top: 0px;
    z-index: 50;
    width: 100%;
    background: #fff;
    transition: 0.3s ease-in-out;
}

.navbar-brand img {
    width: auto;
    height: 94px;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #000 !important;
    transition: 0.3s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: #198c40 !important;
    transition: 0.3s ease-in-out;
}

.navbar-light .navbar-toggler {
    padding: 5px 7px;
    border: none;
    background: #198c40;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 30%) !important;
}

.navbar-light .navbar-toggler i {
    font-size: 24px;
    color: #fff;
}

.navbar-expand-lg .navbar-collapse {
    column-gap: 16px;
    align-items: center;
}

.burger-menu-icon {}

.bmi-icon-anchor {
    width: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bmi-icon-anchor:before {
    position: absolute;
    content: "";
    background-image: url(../images/menu-icon-reverse.png);
    background-size: cover;
    height: 20px;
    width: 20px;
    top: 0px;
    left: 50%;
    transition: 0.4s ease-in-out;
    opacity: 0;
}

.bmi-icon-anchor:hover::before {
    left: 0%;
    transition: 0.4s ease-in-out;
    opacity: 1;
}

.bmi-icon-anchor img {}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-backdrop.show {
    opacity: 0;
}

.modal-open {
    /* height: 100vh; */
}

.modal-open .bmi-icon-anchor {
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.modal.navbar-modal {
    background: rgb(0 0 0 / 85%);
}

.navbar-modal .modal-dialog {
    width: 1320px !important;
    max-width: none;
    margin: 0 auto;
    transform: scale(.85);
    opacity: 0;
    transition: transform .35s cubic-bezier(.19, 1, .22, 1), opacity .35s;
}

.navbar-modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.navbar-modal .modal-content {
    height: 100vh;
    background-color: transparent;
    border: 0px solid rgba(0, 0, 0, .2);
    border-radius: 0;
}

.navbar-modal .modal-header {
    padding: 13px 12px 13px 12px;
    border-bottom: none;
}

.navbar-modal .modal-header img {
    width: auto;
    height: 94px;
}

.navbar-modal .btn-close {
    background: url(../images/close.png);
    height: 18px;
    width: 18px;
    background-size: cover;
    padding: 0px;
    opacity: 1;
    filter: invert(1);
    margin-right: 0px;
}

.navbar-modal .btn-close:focus {
    outline: 0;
    box-shadow: none;
}

.navbar-modal .modal-body {
    text-align: center;
    padding: 3rem 1rem;
}

.navbar-modal .navbar-modal-list-wrap {}

.navbar-modal .navbar-modal-list-wrap ul {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.navbar-modal .navbar-modal-list-wrap ul li {}

.navbar-modal .navbar-modal-list-wrap ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.navbar-modal .navbar-modal-list-wrap ul li a:hover {
    color: #fecf1a;
    transition: 0.3s ease-in-out;
}

.navbar-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #fff;
    display: inline-block;
}

.navbar-social a {
    display: inline-block;
    height: 22px;
    width: 22px;
    margin: 0px 5px;
}

.navbar-social a i {
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.navbar-social a:hover i {
    color: #fecf1a;
    transition: 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: end;
    }
}

/* header-end */

/* header-sticky-start */

.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: #fff;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 17%);
    transition: 0.3s ease-in-out;
}


.header.sticky .navbar-nav {
    opacity: 0;
    transition: 0s linear;
}

.modal-open .navbar-nav {}

/* header-sticky-end */

/* home-banner-design-start */

.banner-section {}

.banner-section .carousel-item {}

.banner-section .carousel-item img {
    aspect-ratio: 1920 / 830;
}

.banner-section .carousel-control-next,
.banner-section .carousel-control-prev {
    width: 7.5%;
    opacity: 1;
}



.banner-section .carousel-control-next div,
.banner-section .carousel-control-prev div {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.banner-section .carousel-control-next div:hover,
.banner-section .carousel-control-prev div:hover {
    opacity: 1;
    background: #198c40;
    transition: 0.3s ease-in-out;
}

.banner-section .carousel-control-next span,
.banner-section .carousel-control-prev span {
    opacity: 0.5;
    filter: invert(1);
    transition: 0.3s ease-in-out;
}

.banner-section .carousel-control-next div:hover span,
.banner-section .carousel-control-prev div:hover span {
    filter: invert(0);
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.banner-section .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 4px;
    margin-left: 4px;
    background-color: #ffffff;
    border: 1px solid #000;
    margin-bottom: 20px;
}

.banner-section .carousel-indicators button.active {
    background-color: #0d8943;
    border: 1px solid #0d8943;
}

/* home-banner-design-end */

.padding-default {
    padding: 90px 0 100px;
}

/* stores-section-design-start */

.stores-section {}

.store-box {
    position: relative;
    overflow: hidden;
}

.store-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 85%);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}


.store-box:hover:before {
    opacity: 0.75;
    transition: 0.3s ease-in-out;
}

.store-box img {
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.store-box:hover img {
    transition: 0.3s ease-in-out;
    transform: scale(1.05);
}

.store-box.sb-one {}

.store-box.sb-one img {}

.store-box.sb-two {}

.store-box.sb-two img {
    aspect-ratio: 1000 / 494;
    object-position: bottom;
}

.store-box.sb-three {}

.store-box.sb-three img {
    aspect-ratio: 1000 / 494;
}

.store-box.sb-four {}

.store-box.sb-four img {}

.store-text-box {
    position: absolute;
    left: 20px;
    bottom: 15px;
    z-index: 2;
    text-shadow: 2px 2px 5px #000000a8;
}

.store-text-box h4 {
    color: #fff;
}

/* stores-section-design-end */

/* home-about-section-design-start */

.about-section {
    background: #f3f3f3;
}

.about-left {}

.about-left img {
    height: 100%;
}

.about-right {
    padding-left: 40px;
    padding-right: 80px;
}

.about-right h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    color: #198c40;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-right p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
    font-weight: 500;
}

.about-right p b {
    font-weight: 600;
}

.about-right ul {}

.about-right ul li {
    line-height: 26px;
    position: relative;
    margin-bottom: 4px;
    font-weight: 600;
    padding-left: 16px;
}

.about-right ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #198c40;
    left: 0;
    top: 0px;
    bottom: 0;
    margin: auto;
}

/* home-about-section-design-end */

/* why-choose-us-section-design-start */

.wcu-box {
    text-align: center;
    padding: 35px 20px 35px;
    height: 100%;
}

.wcu-box:hover {}

.wcu-box img {
    height: 70px;
    width: 70px;
    filter: invert(33%) sepia(82%) saturate(1284%) hue-rotate(114deg) brightness(91%) contrast(80%);
    margin-bottom: 10px;
}

.wcu-box h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.wcu-box p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 0px;
}

/* .wcu-lr {
    position: relative;
}

.wcu-lr:before {
    position: absolute;
    content: "";
    width: calc(100% + 24px);
    height: 100%;
    left: -12px;
    top: 0;
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
}

.wcu-b {
    position: relative;
}

.wcu-b:after,
.wcu-lr.wcu-b:after {
    position: absolute;
    content: "";
    width: calc(100% + 24px);
    height: 100%;
    left: -12px;
    top: 0;
    border-bottom: 1px solid #d3d3d3;
} */

.wcu-spl-col {
    background: #f3f3f3;
}

/* why-choose-us-section-design-end */

/* gallery-section-design-start */

.gallery-section {}

#home-gallery-carousel {
    position: relative;
    overflow: hidden;
}

#home-gallery-carousel .owl-nav,
#home-gallery-carousel .owl-nav.disabled {
    position: absolute;
    display: flex;
    margin-top: 0px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}

#home-gallery-carousel.owl-carousel .owl-nav button.owl-next,
#home-gallery-carousel.owl-carousel .owl-nav button.owl-prev {
    pointer-events: all;
    height: 40px;
    width: 40px;
    border-radius: 0px;
    margin: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home-gallery-carousel.owl-carousel .owl-nav button.owl-next:hover,
#home-gallery-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    background-color: rgb(0 0 0 / 50%);
}

#home-gallery-carousel.owl-carousel .owl-nav button.owl-next i,
#home-gallery-carousel.owl-carousel .owl-nav button.owl-prev i {
    font-size: 24px;
    color: #fff;
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(13 137 67 / 85%);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.gallery-image:hover:before {
    opacity: 0.75;
    transition: 0.3s ease-in-out;
}


.gallery-image img {
    aspect-ratio: 1920 / 1420;
    transition: 0.3s ease-in-out;
}

.gallery-image:hover img {
    transition: 0.3s ease-in-out;
    /* transform: scale(1.03); */
}


/* gallery-section-design-end */

/* product-categories-design-start */

.product-categories-section {}

.col-lg-spl.col-md-3 {
    width: 20%;
}

.prod-cat-card {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pcc-img-box {
    position: relative;
}

.pcc-img-box img {}

.pcc-img-box h5 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    position: absolute;
    top: 35px;
    width: 100%;
    padding: 0px 15px;
    transition: 0.4s ease-in-out;
}

.prod-cat-card:hover .pcc-img-box h5 {
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.pcc-img-inner {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.4s ease-in-out;
}

.pcc-img-inner img {
    filter: invert(33%) sepia(82%) saturate(1284%) hue-rotate(114deg) brightness(91%) contrast(80%);
    width: 80%;
}

.prod-cat-card:hover .pcc-img-inner {
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.pcc-hover-div {
    position: absolute;
    top: 0;
    background: rgb(0 0 0 / 75%);
    height: 100%;
    width: 100%;
    /* transform: translateY(50px); */
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.pcc-hover-div img {
    filter: invert(1);
    width: 50px;
    margin-top: 24%;
    margin-bottom: 40px;
    transform: translateY(40px);
    transition: 0.4s ease-in-out;
}

.pcc-hover-div h6 {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    padding: 0px 15px;
    transform: translateY(20px);
    text-shadow: 2px 2px 5px #000000a8;
    transition: 0.4s ease-in-out;
}

.prod-cat-card:hover .pcc-hover-div {
    /* transform: translateY(0px); */
    opacity: 1;
    transition: 0.4s ease-in-out;
}

.prod-cat-card:hover .pcc-hover-div img {
    transform: translateY(0px);
    transition: 0.4s ease-in-out;
}

.prod-cat-card:hover .pcc-hover-div h6 {
    transform: translateY(0px);
    transition: 0.4s ease-in-out;
}

/* product-categories-design-end */

/* testimonial-part-design-start */

.testimonial-section {
    background: #f3f3f3;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
}

.testimonial-stars {
    margin-bottom: 10px;
}

.testimonial-stars i {
    color: #fecf1a;
}

.testimonial-top {}

.testimonial-top h4 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-top p {
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 6px;
}


.testimonial-bottom {}

.testimonial-bottom h2 {
    font-size: 24px;
}

#testimonial-carousel {}

#testimonial-carousel.owl-theme .owl-nav {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

#testimonial-carousel.owl-carousel .owl-nav button.owl-next,
#testimonial-carousel.owl-carousel .owl-nav button.owl-prev {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 1px 1px 5px #00000012;
}

#testimonial-carousel.owl-carousel .owl-nav button.owl-next i,
#testimonial-carousel.owl-carousel .owl-nav button.owl-prev i {
    transition: 0.4s ease-in-out;
}

#testimonial-carousel.owl-carousel .owl-nav button.owl-next:hover i,
#testimonial-carousel.owl-carousel .owl-nav button.owl-prev:hover i {
    color: #198c40;
    transition: 0.4s ease-in-out;
}

/* testimonial-part-design-end */

/* footer-design-start */

.upper-footer {
    padding: 90px 0 70px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo img {
    width: auto;
    height: 94px;
}

.footer-list {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

.footer-list li {}

.footer-list li a {
    font-weight: 600;
    line-height: 36px;
    transition: 0.4s ease-in-out;
}

.footer-list li a:hover {
    color: #198c40;
    transition: 0.4s ease-in-out;
}

.footer-contact {}

.footer-contact li {
    font-weight: 600;
    line-height: 36px;
}

.footer-contact li b {
    font-weight: 700;
}

.footer-contact li a {
    transition: 0.4s ease-in-out;
}

.footer-contact li a:hover {
    color: #198c40;
    transition: 0.4s ease-in-out;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    column-gap: 15px;
}

.footer-social a {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #198c40;
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.footer-social a i {
    color: #198c40;
    font-size: 16px;
    transition: 0.4s ease-in-out;
}

.footer-social a:hover {
    background: #198c40;
    transition: 0.4s ease-in-out;
}

.footer-social a:hover i {
    color: #fff;
    transition: 0.4s ease-in-out;
}

.lower-footer {
    background: #198c40;
}

.lf-text {
    padding: 16px 0;
}

.lf-text p {
    margin-bottom: 0px;
    color: #fff;
}

.lf-text a {
    color: #fecf1a;
    font-weight: 600;
}

/* footer-design-end */