:root {
 --bs-blue: #0d6efd;
 --bs-indigo: #6610f2;
 --bs-purple: #6f42c1;
 --bs-pink: #d63384;
 --bs-red: #dc3545;
 --bs-orange: #fd7e14;
 --bs-yellow: #ffc107;
 --bs-green: #198754;
 --bs-primary: #198754;
}
/* Custom Dropdown Styles */

a:hover {
    color: #ec4126;
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
}
.dropdown-menu.show {
    display: block;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:hover,  .dropdown-item:focus {
    color: #1e2125;
    background-color: #f8f9fa;
    text-decoration: none;
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
.btn-group .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}
.btn-group .dropdown-menu.show {
    display: block;
}
.btn-group .btn-link {
    text-decoration: none;
    color: inherit;
}
.btn-group .btn-link:hover,  .btn-group .btn-link:focus {
    text-decoration: none;
    color: var(--bs-primary);
}
.btn-group .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    clear: both;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.btn-group .dropdown-item:hover,  .btn-group .dropdown-item:focus {
    color: var(--bs-primary);
    background-color: #f8f9fa;
    text-decoration: none;
}
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    color: #474747;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
 margin-bottom: .5rem;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
}



::-webkit-scrollbar {
 display: none;
}
.container {
    max-width: 1250px;
    width: 100%;
}
.fixed-top {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.bg-dark {
    background-color: #1f1f1f !important;
}
.bg-primary {
    background-color: #1b8057 !important;
}
.text-primary {
    color: #1b8057 !important;
}
a {
    color: #1b8057;
    text-decoration: none;
}
.text-dark {
    color: #1b1b1b !important;
}
.btn-primary {
    color: #000;
    background-color: #198754;
    border-color: #198754;
}
.border-primary {
    border-color: #198754 !important;
}
/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner End ***/





/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}
.btn-square {
    width: 32px;
    height: 32px;
}
.btn-sm-square {
    width: 34px;
    height: 34px;
}
.btn-md-square {
    width: 44px;
    height: 44px;
}
.btn-lg-square {
    width: 56px;
    height: 56px;
}
.btn-square,  .btn-sm-square,  .btn-md-square,  .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.btn.border-secondary {
    transition: 0.5s;
}
.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}
/*** Topbar Start ***/

.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}
.topbar {
    padding: 15px;
    border-radius: 10px 20px;
}
.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.topbar .top-link a {
    letter-spacing: 1px;
}
.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}
.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/



.logo {
    width: 130px;
}
.logo img {
    width: 100%;
}
 @media(max-width: 767px) {
.logo {
    width: 86px;
}
}
/*** Navbar Start ***/

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
    font-weight: 700;
    color: #333;
}
.navbar {
    /*height: 100px;*/

    padding: 5px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.navbar .navbar-nav .nav-link:hover,  .navbar .navbar-nav .nav-link.active,  .fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,  .fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}
 @media (min-width: 1200px) {
.navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    transition: .5s;
    opacity: 0;
}
}
.dropdown .dropdown-menu a:hover {
    background: #1b8057;
    color: #ffffff;
}
.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}
.nav-link {
    display: block;
 padding: .5rem 1rem;
    color: #2a2a2a;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
#searchModal .modal-content {
    background: rgb(0 0 0 / 64%);
}
/*** Navbar End ***/



/*** Hero Header ***/

.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 390px;
}
.carousel-item {
    position: relative;
    height: 100%;
}
/*.carousel-item a {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 25px;

    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));

}*/







.carousel-control-next,  .carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.carousel-control-next {
    margin-right: 20px;
}
.carousel-control-prev {
    margin-left: 20px;
}
.caption {
    position: relative;
    top: 0;
    left: 0;
    padding: 100px 0 0 80px;
}
.caption h5 {
    color: #fff;
}
.caption h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}
.caption h4 {
    color: #fff;
}
.carousel-item .caption a {
    font-size: 16px;
    background: linear-gradient(rgb(14 14 14 / 70%), rgb(0 0 0 / 94%));
}
.carousel-item img {
    position: absolute;
    right: 0;
    width: 100%;
    height: 390px;
    object-fit: cover;
}
.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/cart-page-header-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
 @media (min-width: 992px) {
.hero-header,  .page-header {
    margin-top: 10px;
}
}
 @media (max-width: 992px) {
.hero-header,  .page-header {
    margin-top: 10px;
}
}
/*** Hero Header end ***/





/*** featurs Start ***/

.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 80px;
    height: 80px;
}
.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: -8px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: #1b8057;
}
/*** featurs End ***/





/*** service Start ***/

.service .service-item .service-content {
    position: relative;
    width: 250px;
    height: 130px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*** service End ***/





/*** Fruits Start ***/

.shop .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}
.shop .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}
.shop .shop-categorie .shop-name {
    line-height: 40px;
    position: relative;
}
.shop .shop-categorie .shop-name a {
    transition: 0.5s;
    display: block;
    border-bottom: 1px solid #e7e7e7;
}
.shop-name a span {
    position: absolute;
    right: 5px;
    text-align: center;
}
.shop .shop-categorie .shop-name a:hover {
    color: var(--bs-secondary);
    background: #198754;
}
.shop .shop-item {
    height: 100%;
    transition: 0.5s;
}
.shop .shop-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}
.shop .shop-item .shop-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    padding: 50px 0 0;
}
.shop .shop-item .shop-img img {
    transition: 0.5s;
}
.shop .shop-item .shop-img img:hover {
    transform: scale(1.3);
}
/*** Fruits End ***/





/*** vesitable Start ***/

.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}
.vesitable .vesitable-item:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}
.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
    padding: 40px 0 0;
    text-align: center;
}
.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
    width: 150px !important;
    height: 150px;
    margin: 0 auto;
    padding: 20px;
    object-fit: cover;
}
.vesitable .vesitable-item:hover img {
    transform: scale(1.2);
}
.vesitable .owl-stage {
    margin: 20px 0;
    position: relative;
}
.vesitable-item h4 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}
.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -30px;
    right: 50px;
    color: var(--bs-primary);
    padding: 5px 10px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}
.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -30px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 10px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}
.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
p.price {
    padding: 0 0 5px;
}
p.price span {
    color: #8f8f8f;
    text-decoration: line-through;
    font-weight: 600;
    margin-left: 8px;
    font-size: 16px;
}
.price small, .price .small {
    font-size: 0.700em;
}
small, .small {
    font-size: 0.9em  12.15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.wslt {
    color: #a3a3a3;
}
.wslt:hover {
    color: #1b8057;
}
.rtsb-tag-fill.angle-right {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    padding-right: 8px;
}
.rtsb-tag-fill {
    color: #fff;
    position: relative;
    margin: 0 0 15px;
    border-radius: 4px;
    top: 0;
    display: inline-block;
    right: auto;
    height: 18px;
    line-height: 1;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 8px;
    background-color: #e00000;
}
/*** vesitable End ***/





/*** Banner Section Start ***/

.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/





/*** Facts Start ***/

.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.counter i {
    font-size: 40px;
    margin-bottom: 25px;
}
.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
}
.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/





/*** testimonial Start ***/

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}
.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}
.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** testimonial End ***/





/*** Single Page Start ***/

.pagination {
    display: inline-block;
}
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
.pagination a:hover:not(.active) {
    background-color: var(--bs-primary)
}
.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
    background: var(--bs-primary);
    color: #fff;
}
/*** Single Page End ***/





/*** Footer Start ***/

.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}
.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}
.footer .footer-item p.mb-4 {
    line-height: 25px;
}
/*** Footer End ***/





.overlay {
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    opacity: 0.2;
}
/* ---- slider bottom ads ---*/



/*-------------------------------------

#. EL: Hero Banner

-------------------------------------*/

.rt-hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.rt-hero-banner .entry-subtitle {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #fff;
    background-color: red;
    margin-bottom: 15px;
    line-height: 1.6;
    padding: 3px 24px 3px 12px;
    border-radius: 5px;
    clip-path: polygon(50% 0, 100% 0, 100% 0, 95% 50%, 100% 100%, 100% 100%, 62% 100%, 0 100%, 0 0, 0 0);
}
.rt-hero-banner .entry-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.1;
    color: #333;
}
.rt-hero-banner .product-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
    line-height: 1.3;
}
.rt-hero-banner .product-price {
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    color: #333;
    margin-bottom: 20px;
}
.rt-hero-banner .image-scale img {
    width: 100%;
    object-fit: cover;
    transition: all 0.21s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.rt-hero-banner:hover .image-scale img {
    transform: scale3d(1.055, 1.065, 1);
}
 @media(max-width: 991px) {
.rt-hero-banner .entry-title br,  .rt-hero-banner .product-label br {
    display: none;
}
}
/*banner box 1*/

.rt-hero-banner-style1 .rt-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0 40px;
}
.rt-hero-banner-style1 .entry-title {
    margin-bottom: 10px;
}
/*banner box 2*/

.rt-hero-banner-style2 .rt-content {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 40px;
}
.rt-hero-banner-style2 .entry-title {
    font-size: 24px;
}
.rt-hero-banner-style2 .product-price {
    font-size: 26px;
}
.rt-hero-banner-style2 .product-price span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.rt-hero-banner-style2 .image-scale img {
    min-height: 250px;
}
 @media(min-width: 1025px) and (max-width: 1199px) {
.rt-hero-banner-style2 .rt-content {
    padding: 0 24px;
}
.rt-hero-banner-style2 .entry-title {
    font-size: 24px;
}
.rt-hero-banner-style2 .product-label {
    margin-bottom: 12px;
}
}
 @media(max-width: 991px) {
.rt-hero-banner-style1 img {
    height: 390px;
}
}
/*banner box 2*/

.rt-hero-banner-style2 .rt-content {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 40px;
}
.rt-hero-banner-style2 .entry-title {
    font-size: 24px;
    text-shadow: 0 0 10px #000;
}
.rt-hero-banner-style2 .product-label {
    text-shadow: 0 0 10px #000;
}
.rt-hero-banner-style2 .product-price {
    font-size: 26px;
}
.rt-hero-banner-style2 .product-price span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.rt-hero-banner-style2 .image-scale img {
    min-height: 250px;
}
 @media(min-width: 1025px) and (max-width: 1199px) {
.rt-hero-banner-style2 .rt-content {
    padding: 0 24px;
}
.rt-hero-banner-style2 .entry-title {
    font-size: 24px;
}
.rt-hero-banner-style2 .product-label {
    margin-bottom: 12px;
}
}
 @media(max-width: 991px) {
.rt-hero-banner-style1 img {
    height: 390px;
}
}
/*banner box 3*/

.rt-hero-banner-style3 .rt-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0 80px;
    display: flex;
    column-gap: 100px;
}
.rt-hero-banner-style3 .entry-title {
    margin-bottom: 10px;
}
.rt-hero-banner-style3 .price-content {
    position: relative;
    z-index: 0;
}
.rt-hero-banner-style3 .rt-price {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.rt-hero-banner-style3:hover .image-scale img {
    transform: unset;
}
 @media(max-width: 1024px) {
.rt-hero-banner-style3 .banner-content {
    flex: 1;
}
}
 @media(max-width: 767px) {
.rt-hero-banner-style3 .price-content {
    display: inline-block;
    margin-top: 30px;
}
.rt-hero-banner-style3 .rt-content {
    display: block;
}
}
/* Category Carousel ----------*/

.category-carousel {
}
.cate-item {
    align-items: center;
    /* justify-content: center; */

    display: flex;
    border: 1px solid #e7e7e7;
    border-radius: 50px 50px;
    padding: 0px;
    background: #ffffff;
}
.cate-img {
    background: #e7e7e7;
    border-radius: 100% 100%;
    width: 62px;
    height: 62px;
    padding: 10px;
    margin-right: 5px;
    display: inline-flex;
}
.cate-img img {
}
.cate-item a {
    font-weight: 600;
    color: #333;
    display: inline-block;
}
.cate-item a:hover {
    color: #679d06;
}
.category .owl-stage {
    margin: 30px 0 10px;
    position: relative;
}
.category .owl-nav .owl-prev {
    position: absolute;
    top: -25px;
    right: 48px;
    color: var(--bs-primary);
    padding: 5px 10px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}
.category .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
.category .owl-nav .owl-next {
    position: absolute;
    top: -25px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 10px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}
.category .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
.marq a:hover {
    color: #000 !important;
}
/* Modern Marquee Styles */

.modern-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}
.marquee-content {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    padding-left: 100%;
    color: white !important;
}
 @keyframes scroll-left {
 0% {
 transform: translateX(0);
}
 100% {
 transform: translateX(-100%);
}
}
.modern-marquee:hover .marquee-content {
    animation-play-state: paused;
}
.modern-marquee a {
    color: white !important;
    text-decoration: none !important;
    font-weight: bold;
}
.modern-marquee a:hover {
    color: #ffd700 !important;
    text-decoration: underline !important;
}
.fixed-top.shadow .logo {
    width: 90px;
    padding-top: 16px;
    transition: all 0.3s;
}
.shop-menu2 {
    display: none !important;
}
 @media (max-width: 1199px) {
.shop-menu {
    display: none !important;
}
.shop-menu2 {
    display: inherit !important;
}
}
/* Category Tabs -------*/

.shop-widget {
    margin: 30px 0;
}
.widget-title {
    margin: 20px 0 35px;
}
.widget-title h4 {
    text-transform: uppercase;
    font-size: 16px;
    color: #222222;
    letter-spacing: 1px;
}
.widget-content ul#accordion {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget-content ul#accordion li {
    display: block;
    margin: 0 0 18px;
    position: relative;
}
.widget-content ul#accordion li span {
    position: absolute;
    right: 8px;
    font-size: 26px;
    top: -8px;
    font-weight: 300;
}
.widget-content ul#accordion li h4 {
    font-size: 14px;
    color: #198754;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e9e9e9;
    padding: 0 0 10px;
}
.widget-content ul#accordion li h4 a {
    display: block;
}
.widget-content ul#accordion li h4:after {
   content: "";
    border: 1.5px solid #000;
    position: absolute;
    width: 7px;
    top: 25px;
    left: 0;
}
.widget-content ul#accordion li ul {
    padding: 10px 0 0 10px;
    margin: 0;
    display: none;
}
.widget-content ul#accordion li ul li {
    padding: 0 0 5px;
    margin: 0;
}
.widget-content ul#accordion li ul li a {
    color: #3e3e3e;
    text-transform: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    padding: 3px 0;
    display: block;
}
.widget-content ul#accordion li ul li a:hover {
    text-decoration: none;
    color: #198754;
}
/* Category Tabs End -------*/





/* Multi Lavel Menu ------*/



.main-menu {
    padding: 10px 0 0;
}
.main-menu ul > li {
    display: inline-block;
    position: relative;
    margin: 0;
}
.main-menu ul li > a {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 700;
    display: inline-block;
    padding: 20px 15px;
    position: relative;
    text-transform: uppercase;
    color: #333;
}
 @media (min-width: 992px) and (max-width: 1200px) {
.main-menu ul li a {
    font-size: 15px;
}
}
 @media (min-width: 1200px) and (max-width: 1500px) {
.main-menu ul li a {
    font-size: 15px;
}
}
.main-menu ul li a i {
    font-size: 14px;
}
 @media (max-width: 767px) {
.main-menu ul li a i {
    display: none !important;
}
}
 @media (min-width: 768px) and (max-width: 991px) {
.main-menu ul li a i {
    display: none !important;
}
}
.main-menu ul li a::before {
    position: absolute;
    content: "";
    /* background: #a70000; */

    width: 100%;
    /* height: 3px; */

  /* bottom: -24px; */

    left: 0;
    opacity: 0;
    transform: scaleX(0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.main-menu ul li a:hover::before {
    opacity: 1;
    transform: scaleX(1);
}
.main-menu ul li a.active::before {
    opacity: 1;
    transform: scaleX(1);
}
.main-menu ul li a:hover {
    color: var(--bs-primary);
}
.main-menu ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #ececec;
    width: auto;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    opacity: 0;
    visibility: hidden;
    text-align: left;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    padding: 0px 0 5px;
}
.main-menu ul li .submenu li {
    display: block;
    margin: 0;
}
.main-menu ul li .submenu li a {
    padding: 8px 18px;
    position: inherit;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    color: #000;
    text-transform: none;
    white-space: nowrap;
    font-weight: 600; font-size: 13px;
}
.main-menu ul li .submenu li a::before {
    display: none;
}
.main-menu ul li .submenu li:hover a {
    color: #ffffff;
    background: #1b8057;
}
.main-menu ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.main-menu ul li .submenu .submenu2 {
    top: 50px;
    left: 192px !important;
    background: #fff;
    max-width: 220px;
    /* right: 0; */
    width: 100%;
    box-shadow: 0 0 10px #a7a7a7a6;
}
.main-menu ul li .submenu .submenu2 li a {
    color: #000;
    background: transparent;
    padding: 8px 15px;
    white-space: normal;
    font-weight: 600;
}
.main-menu ul li .submenu .submenu2 li a:hover {
    color: #ffffff;
    background: #248e63;
}
.main-menu ul li .submenu:hover .submenu2 {
    top: 0 !important;
}
.main-menu ul li:hover > a::before {
    opacity: 1;
    transform: scaleX(1);
}
.main-menu ul li:first-child a {
/* padding-left: 0; */

}
.sticky {
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    z-index: 990;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.96);
}
 @media (max-width: 767px) {
.sticky {
    background: #040E27;
}
}
 @media (min-width: 768px) and (max-width: 991px) {
.sticky {
    background: #040E27;
}
}
 @media (max-width: 767px) {
.sticky {
    padding: 0;
}
}
/*!

 * SlickNav Responsive Mobile Menu v1.0.10

 

 */

.slicknav_btn {
    position: relative;
    display: block;
    vertical-align: middle;
    float: right;
    padding: 0.438em 0.625em 0.438em 0.625em;
    line-height: 1.125em;
    cursor: pointer;
}
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
    margin-top: 0.188em;
}
.slicknav_menu {
 *zoom: 1;
}
.slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: left;
}
.slicknav_menu .slicknav_icon {
    float: left;
    width: 1.125em;
    height: 0.875em;
    margin: 0.188em 0 0 0.438em;
}
.slicknav_menu .slicknav_icon:before {
    background: transparent;
    width: 1.125em;
    height: 0.875em;
    display: block;
    content: "";
    position: absolute;
}
.slicknav_menu .slicknav_no-text {
    margin: 0;
}
.slicknav_menu .slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: 0.125em;
}
.slicknav_menu:before {
    content: " ";
    display: table;
}
.slicknav_menu:after {
    content: " ";
    display: table;
    clear: both;
}
.slicknav_nav {
    clear: both;
}
.slicknav_nav ul {
    display: block;
}
.slicknav_nav li {
    display: block;
}
.slicknav_nav .slicknav_arrow {
    font-size: 1.8em;
    margin: 0 0 0 0.4em;
    position: relative;
    bottom: 8px;
}
.slicknav_nav .slicknav_item {
    cursor: pointer;
}
.slicknav_nav .slicknav_item a {
    display: inline;
}
.slicknav_nav .slicknav_row {
    display: block;
}
.slicknav_nav a {
    display: block;
}
.slicknav_nav .slicknav_parent-link a {
    display: inline;
}
.slicknav_brand {
    float: left;
}
.slicknav_menu {
    font-size: 16px;
    box-sizing: border-box;
    background: #ffffff;
    margin:-8px 0 0;
    padding: 0;
}


.slicknav_menu * {
    box-sizing: border-box;
}
.slicknav_menu .slicknav_menutxt {
    color: #fff;
    font-weight: bold;
}
.slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration: none;
    background-color: none;
}
.slicknav_nav {
    color: #fff;
    margin: 0;
    padding: 10px 0;
    font-size: 0.875em;
    list-style: none;
    overflow: hidden;
}
.slicknav_nav ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0 0 0 20px;
    background: #f5f5f5;
}
ul.submenu li a {
    padding: 5px 10px;
}
ul.submenu.submenu2 a {
    font-size: 13px;
    padding: 5px 0 5px 10px;
}
.slicknav_nav .slicknav_row {
    padding: 8px 10px;
    margin: 2px 5px;
}
.slicknav_nav .slicknav_row:hover {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #ccc;
    color: #fff;
}
.slicknav_nav a {
    padding: 8px 10px;
    margin: 2px 5px;
    text-decoration: none;
    color: #fff;
}
.slicknav_nav a:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: #ccc;
    color: #222;
}
.slicknav_nav .slicknav_txtnode {
    margin-left: 15px;
}
.slicknav_nav .slicknav_item a {
    padding: 0;
    margin: 0;
}
.slicknav_nav .slicknav_parent-link a {
    padding: 0;
    margin: 0;
}
.slicknav_brand {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    padding: 7px 12px;
    height: 44px;
}
/*===== mobile menu slicknav =====*/



.mobile_menu {
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 99;
    top: 100px;
}
.slicknav_menu .slicknav_menutxt {
    display: none;
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #fff;
    height: 3px;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 30px;
    position: relative;
}
.slicknav_btn {
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: -35px;
    position: relative;
    z-index: 99;
}
.slicknav_nav a:hover {
    background: #1b8057 none repeat scroll 0 0;
    border-radius: 0;
    color: #ffffff;
}
.slicknav_nav a {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
}
.slicknav_nav .slicknav_arrow {
    float: right;
}
.slicknav_nav .slicknav_row:hover,  .slicknav_nav .slicknav_row:hover .slicknav_arrow {
    border-radius: 0;
    background-color: #F79960;
    background-color: transparent;
    color: #000;
}
.slicknav_btn {
    background-color: #1b8057;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    z-index: 99;
    border: none;
    border-radius: 3px;
    top: 5px;
    padding: 10px;
    right: 15px;
    margin-left: 14px;
    top: -30px;
}
.slicknav_menu .slicknav_icon {
    margin-right: 6px;
    margin-top: 3px;
    position: relative;
    right: 6px;
    top: -8px;
    padding-bottom: 3px;
}
 @media (max-width: 991px) {
.mobile_menu ul li a i {
    display: none !important;
}
}
 @media (min-width: 992px) and (max-width: 1199px) {
.nav-bar {
    padding: 0;
}
.main-menu ul li a {
    font-size: 14px;
}
.main-menu ul li > a {
    padding: 0 7px;
}
}
.old-price {
    color: #bbbbbb;
    font-size: 22px;
    font-weight: 500;
}
.table {
 --bs-table-bg: transparent;
 --bs-table-striped-color: #747d88;
 --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
 --bs-table-active-color: #747d88;
 --bs-table-active-bg: rgba(0, 0, 0, 0.1);
 --bs-table-hover-color: #747d88;
 --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #3a3a3a;
    vertical-align: top;
    border-color: #dee2e6;
    font-weight: 600;
}
tr.tb-titl {
    background: #040f28 !important;
    color: #fff !important;
}
.text-justify {
    text-align: justify;
}
.login-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
}
.login-box input[type="text"],  .login-box input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.login-box button {
    width: 100%;
    padding: 12px;
    background-color: #0083b0;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.login-box button:hover {
    background-color: #005f73;
}
.login-box .forgot {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}
.pagination a.disabled {
    pointer-events: none;
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
}
.pagination span.rounded {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    margin: 0 5px;
    text-decoration: none;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    transition: .5s;
}
/* Custom Dropdown Styles for both mobile and desktop */

.shop-menu .dropdown,  .shop-menu2 .dropdown {
    position: relative;
}
.shop-menu .dropdown .btn-link,  .shop-menu2 .dropdown .btn-link {
    color: inherit;
    padding: 0;
    margin: 0;
}
.shop-menu .dropdown .btn-link:hover,  .shop-menu2 .dropdown .btn-link:hover {
    color: var(--bs-primary);
}
.shop-menu .dropdown-menu,  .shop-menu2 .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    z-index: 1000;
}
.shop-menu .dropdown-menu.show,  .shop-menu2 .dropdown-menu.show {
    display: block;
}
.shop-menu .dropdown-item,  .shop-menu2 .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.shop-menu .dropdown-item:hover,  .shop-menu .dropdown-item:focus,  .shop-menu2 .dropdown-item:hover,  .shop-menu2 .dropdown-item:focus {
    color: var(--bs-primary);
    text-decoration: none;
    background-color: #f8f9fa;
}
.shop-menu .dropdown-divider,  .shop-menu2 .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
/* Ensure dropdowns are above other content */

.shop-menu .dropdown,  .shop-menu2 .dropdown {
    z-index: 1030;
}



/* Position fix for desktop dropdown */

@media (min-width: 992px) {
.shop-menu .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    margin-top: 0.5rem;
}
}
/* Flyer Styles */

.flr-b {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #fff;
    margin-bottom: 20px;
}
.flr-b:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.single-gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.single-gallery-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.flr-b:hover .single-gallery-image img {
    transform: scale(1.05);
}
.flr-b h6 {
    padding: 15px;
    margin: 0;
    font-weight: 600;
    color: #333;
    text-align: center;
    border-radius: 0 0 10px 10px;
    background: #fff;
}
.img-pop-up {
    text-decoration: none;
    display: block;
    color: inherit;
}
.img-pop-up:hover {
    text-decoration: none;
    color: inherit;
}
/* Modern Marquee Styles */

.modern-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}
.marquee-content {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    padding-left: 100%;
    color: white !important;
}
 @keyframes scroll-left {
 0% {
 transform: translateX(0);
}
 100% {
 transform: translateX(-100%);
}
}
.modern-marquee:hover .marquee-content {
    animation-play-state: paused;
}
.modern-marquee a {
    color: white !important;
    text-decoration: none !important;
    font-weight: bold;
}
.modern-marquee a:hover {
    color: #ffd700 !important;
    text-decoration: underline !important;
}
.marq a:hover {
    color: #000 !important;
}
button.btn-search {
    display: none;
}
