:root {
    --blue: #5e72e4;
    --indigo: #5603ad;
    --purple: #7f00ff;
    --pink: #e100ff;
    --red: #f5365c;
    --orange: #fb6340;
    --yellow: #ffd600;
    --green: #2dce89;
    --teal: #11cdef;
    --cyan: #2bffc6;
    --white: #fff;
    --gray: #8898aa;
    --gray-dark: #32325d;
    --light: #ced4da;
    --lighter: #e9ecef;
    --dark: #212529;
    --darker: black;
    --neutral: #fff;

    --primary: #14003F;
    --primary-light: #CE93D8;
    --primary-dark: #14003F;

    --secondary: #FFEB3B;
    --secondary-light: #FFF59D;
    --secondary-dark: #FBC02D;

    --basic: #172b4d;
    --default: #172b4d;
    --success: #2dce89;
    --info: #11cdef;
    --warning: #fb6340;
    --danger: #f5365c;

    --background: #fafafa;
    --surface: #ffffff;
    --on-primary: #fff;
    --on-secondary: #000;
    --on-background: #000;
    --on-surface: #808080;

    --primary-color: #9C27B0;
    --primary-color2: linear-gradient(97.85deg, #9C27B0 -54.32%, #7B1FA2 150.59%);
    --title-color: #141313;
    --text-color: #777777;
    --border-color: #201f1f17;
    --gradient-color: linear-gradient(279.58deg,
            rgba(103, 0, 151, 0.75) -55.92%,
            rgba(80, 192, 255, 0.75) 141.72%);
    --shadow-color: 0px 10px 30px rgba(118, 85, 225, 0.3);
    --box-shadow: 0px 10px 30px rgba(57, 56, 61, 0.205);
    --box-shadow2: 0px 10px 25px rgba(0, 0, 0, 0.2);

    /* font family variables. */
    --poppins: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    /* font-family: 'Open Sans', sans-serif; */
    font-family: var(--poppins);
    background: var(--background);
    color: var(--on-surface);
    line-height: 1.5;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--poppins);
    font-weight: 700;
    font-style: normal;
    color: #333;
    font-display: swap;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


a {
    color: var(--on-surface);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

.c-pointer {
    cursor: pointer;
}

/********************************** Bootstarp FIX ***********************************/

.background {
    background: var(--background);
}

.surface {
    background: var(--surface)
}

.card {
    border: none;
}


.form-control,
.form-control:focus,
.form-control:hover,
.form-control:active,
.form-control:visited {
    outline: none;
    box-shadow: none;
    border: 1px solid #efefef;
}

.btn-primary {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
    -webkit-box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%);
    border: 2px solid var(--primary);
    padding: 12px 20px;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn-primary:hover {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
}


.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
}

.btn-primary:disabled,
.btn-primary.disabled {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
}


.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border: 2px solid var(--primary);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding: 12px 20px;
    display: inline-block;

}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    -webkit-box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%);
}


.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

.btn-check:checked+.btn-outline-primary,
.btn-check:active+.btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-check:checked+.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    color: var(--primary);
    background-color: transparent;
}

.text-primary {
    color: var(--primary) !important;
}

/************************************************************************************/





/***************************************************************************************/
/*Header CSS */

header {
    position: relative;
    height: 150px !important;
    width: 100%;
    transition: background 0.4s, all 0.3s linear;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
    background: var(--primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 920px) {
    header {
        height: 120px !important;
    }

   .toggle-bar{
        padding-top: 12px !important;
        display: block !important;
        border: none !important;
    }

    .toggle-bar:hover{
        border: none !important;
    }

    .toggle-bar:focus{
        border: none !important;
    }

    .toggle-bar:active{
        border: none !important;
    }

    .toggle-bar i{
        color: var(--on-primary);
        font-size: 28px !important;
        padding-top: 20px;
    }


    .rtl-toggle-bar{
        position: absolute !important;
        top: 10px !important;
        left: 15px !important;
    }

    .top-header{
        display: none !important;
    }

    .market-header{
        height: 120px !important;
    }

}

.top-header {
    border-bottom: 1px solid var(--on-surface);
}

.main-menu {
    background: var(--primary) !important;
}

.header_contact_info ul li a span.help{
    color: var(--on-primary);
    font-weight: 500;
    font-size: 15px;
    margin-right: 10px;
    text-transform: uppercase;
}


.header_contact_info ul li a span.line{
    color: var(--on-primary);
    font-weight: 500;
    font-size: 15px;
    margin-left: 10px;
}

.header_social_info{
    display: flex;
    align-items: end;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header_social_info ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header_social_info ul li{
    margin-left: 10px;
    padding-right: 10px;
    border-right: 1px solid var(--on-primary);
}

.header_social_info ul li a{
    color: var(--on-primary);
    font-weight: 500;
    font-size: 15px;
}


.header_social_info ul li:last-child{
    border-right: none !important;
}

.toggle-bar {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent; /* optional */
}


.toggle-bar:hover {
  background-color: #fadeda; /* or any hover color */
  border: none !important;
}

@media screen and (max-width: 768px) {
    .header_social_info ul li a{
        font-size: 12px;
    }
    .header_social_info ul li{
        margin-left: 5px;
        padding-right: 5px;
    }
}


.default-language{
    color: var(--on-primary);
}

.main-menu{
    padding: 0 !important;
    margin: 0 !important;
}

.main-menu .navbar {
    padding: 0 !important;
    margin: 0 !important;
}

.main-menu .navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
}

.main-menu .navbar .navbar-nav {
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 30px !important;
}

.logo {
    position: absolute !important;
    top: -30px !important;
    width: 150px !important;
    max-height: 100px !important;
}

.logo img {
    width: 100% !important;
    height: 100% !important;
}


.main-menu .navbar .navbar-nav .nav-item {
    padding: 0 !important;
    margin: 0 !important;
}

.main-menu .navbar .navbar-nav .nav-item a {
    color: var(--on-primary) !important;
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-left: 10px;
    margin-right: 10px;
}



/* ======================================  12. Product Details CSS ========================================== */
/* .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
}

.product-breadcrumb .breadcrumb{
    background: none;
}

.product-breadcrumb li{
    font-weight: 600;
}

.product-breadcrumb .active{
    color: #999;
} */

.pd-left,
.pd-right {
    background: var(--surface);
    /* border-radius: 6px; */
    padding: 1rem;
    /* box-shadow: 4px 4px 15px -5px rgba(0, 0, 0, 0.25); */
}

.product-content h4 {
    color: var(--star-color)
}

.product-content p {
    max-width: 85%;
}

.brand span:last-child {
    color: var(--star-color)
}

.share-media {
    display: flex;
    align-items: center;
}

.share-media a {
    display: block;
    margin-right: 1rem;
    border: 1px solid #ccc;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    padding: 4px;
}

.product-content h1 {
    font-weight: 400;
    font-size: 1.6rem;
}

.pd-brand {
    color: rgb(245, 165, 35);
}

.pd-label {
    padding: 0.3rem 0;
}

.pd-label span {
    color: #888;
    font-size: 14px;
}

.pd-label a {
    font-size: 14px;
    color: blue
}

.pd-price {
    display: flex;
    align-items: center;
    margin: 0.7rem 0;
}

.pd-price h4 {
    margin: 0 1rem;
}

.pd-price del {
    color: #888;
}


.qty-taker input {
    max-width: 50px;
    text-align: center;
}


/* ********************************* Search box css   **********************/
.searchbar {
    flex-grow: 1;
}


.search-box{
    margin-left: 100px !important;
}


@media screen and (max-width: 768px) {
  .search-box{
        margin-left: 0px !important;
    }
}

.search-form{
    width: 600px !important;
}


.search-form .input-group{
    height: 45px !important;
}

.search-form .input-group select{
    width: 150px !important;
    text-align:center;
}


.search-box,
.search-inputs {
    display: flex;
    width: 100%;
}

.search-inputs {
    border: 1px solid #eee;
    border-radius: 4px 0 0 4px;
}

.search-input {
    flex-grow: 1;
}

.searchbar input,
.searchbar select,
.searchbar button {
    border: none;
    outline: none;
    border-radius: 0;
    padding: 0.55rem 1rem;
}

.searchbar select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 4px 0 0 4px;
    width: 150px;
    border-right: 0px solid #fff;
    background: #fff;
}


.search-box input {
    color: #555;
    width: 100%;
    border-left: 1px solid #eee;
}

 .search-box-select {
    background: red;
}


.searchbar button {
    outline: none;
    background: var(--primary);
    color: var(--on-primary);
    border: 1px solid var(--primary);
    border-radius: 0 4px 4px 0;
    height: 100%;
}


/********************************** 3. Menubar CSS ***********************************/
.menubar-area {
    background-color: #111827;
}

.level-1>a {
    display: block;
    padding: 1rem 1.5rem;
    background-color: var(--primary);
    color: var(--on-primary);
}

.level-1>a .fa-angle-down {
    display: none;
}


.level-1,
.level-2 {
    position: relative;
}


.level-1-dropdown>li>a {
    padding: 1rem 1.5rem;
    display: block;
    font-size: 14px;
}

.level-2>a>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.level-1-dropdown>li>a:hover {
    background: #f8f8f8;
}

.level-2-dropdown {
    position: absolute;
    left: 100%;
    background: #fff;
    min-width: 600px;
    left: 100%;
    /* box-shadow: 0px 0px 10px #ddd; */
    visibility: hidden;
    border: 1px solid #ebebeb;
    opacity: 0;
    top: 0;
    transform: translateY(100%);
    display: none;
    padding: 1rem .5rem;
}

.level-1-dropdown {
    position: absolute;
    min-width: 300px;
    background: #fff;
    /* box-shadow: 0px 0px 10px #ddd; */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    display: none;
}


.level-2-dropdown .row {
    width: 100%;
}

.level-2-dropdown a {
    display: block;
    /* margin-top: 1rem; */
}

.menubar-right a {
    color: var(--on-primary) !important;
}

.menubar-area .navbar-toggler {
    color: var(--on-primary);
}


.level-2-dropdown h6 {
    font-weight: normal;
    padding: 10px 0;
    font-size: 14px;
}

.subscribe {
    margin-top: 1rem;
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.subscribe button {
    background: var(--primary);
    color: #fff;
}



[v-cloak] {
    display: none;
}


.btn-group-xs>.btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}


.address-selected {
    border: 2px solid var(--primary) !important;
}





@media only screen and (min-width: 992px) {


    /* 3. Menubar CSS */

    .level-1-dropdown {
        display: block;
        z-index: 999;
    }

    .level-2-dropdown {
        display: block;
    }

    .level-2:hover .level-2-dropdown,
    .level-1:hover .level-1-dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -o-transition: -o-transform 0.3s, opacity 0.3s;
        -ms-transition: -ms-transform 0.3s, opacity 0.3s;
        -moz-transition: -moz-transform 0.3s, opacity 0.3s;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    }
}




/* header banner section */

.header-banner-content {
    padding: 20px 0px;
}

.header-banner-content h3 {
    font-size: 25px;
    margin: 20px 0px;
    font-weight: 600;
}


.header-banner-img img {
    width: 100%;
    height: 400px;
}


.about-us-img img {
    width: 100%;
    height: 350px;
}

.about-us-content {
    padding: 20px 15px;
}



.about-us-content h3 {
    font-size: 25px;
    margin: 20px 0px;
    font-weight: 600;
}


.about-us-content p {
    margin: 20px 0px;
}


.why-us {
    background: #F2ECFF;
}

.why-us-img img {
    margin: 0 auto;
    width: 700px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.why-us-content h3{
    font-size: 25px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-card{
    padding: 20px 10px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 100%;
    position: relative;
    background: #fff;
}

.why-us-card::before{
    content: '';
    position: absolute;
    top: -25%;
    left: 25px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.our-service {
    background: #FFF;
}

.our-service-content h3{
    font-size: 25px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-service-card{
    padding: 20px 10px 10px 10px;
    border-radius: 5px;
    position: relative;
    background: #fff;
}

.our-service-card img{
    margin: 0 auto;
    width: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-service-card p{
    margin: 20px 0px;
    text-align: start;
    font-weight: 300;
    font-size: 16px;
}

.get-notification{
    background-image: url('../images/get_notification.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-notification-card h1{
    font-size: 25px;
    font-weight: 600;
    display: flex;
    justify-content: start;
    align-items: start;
    color: #fff;
}

.get-notification-card p{
    margin: 20px 0px;
    text-align: start;
    font-weight: 300;
    font-size: 12px;
    color: #ccc;
}


.get-notification-form form{
    display: flex;
    justify-content: center;
    align-items: center;
}


.get-notification-form form input{
    padding: 10px 15px;
    border: none;
    outline: none;
    width: 300px;
    border-radius: 5px 0px 0px 5px;
}

.get-notification-form form button{
    padding: 10px 15px;
    border: none;
    outline: none;
    background: #FF9100;
    color: #fff;
    border-radius: 0px 5px 5px 0px;
}


.get-notification-form-rtl form input{
    padding: 10px 15px;
    border: none;
    outline: none;
    width: 300px;
    border-radius: 0px 5px 5px 0px;
}

.get-notification-form-rtl form button{
    padding: 10px 15px;
    border: none;
    outline: none;
    background: #FF9100;
    color: #fff;
    border-radius: 5px 0px 0px 5px;
}

/*Import Fonts from fonts.css file*/
/* @import url('./fonts.css'); */

/* CSS Variables */



.font-poppins {
    font-family: var(--poppins);
}

p.para {
    color: var(--text-color);
    font: normal 500 16px/ 25px var(--poppins);
}

/* Buttons */

/* .button{
      padding: .8rem 2.2rem;
      font: normal 500 16px/20px var(--poppins);
      position: relative;
      border: 3px solid transparent;
      border-radius: 4px;
  }

  .button.primary-button{
      background: var(--gradient-color);
      background-clip: padding-box;
      color: whitesmoke;
      transition: background .6s ease;
      box-shadow: var(--box-shadow);
  }

  .button.primary-button:hover{
      background: whitesmoke;
      background-clip: padding-box;
      color: black;
  }

  .button.primary-button::after, .button.secondary-button::after{
      position: absolute;
      top: -2px; left: -2px;
      bottom: -2px;  right: -2px;
      background: var(--gradient-color);
      content: ' ';
      z-index: -1;
      border-radius: 4px;
  }

  .button.secondary-button{
      background: white;
      background-clip: padding-box;
      transition: background .6s ease;
  }

  .button.secondary-button:hover{
      background: var(--gradient-color);
      color: whitesmoke;
      box-shadow: var(--box-shadow);
  } */

/* End CSS Variable */

.top-border {
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

/* Start Navigation Area */

.main-menu {
    background: #fff;
}

.top-nav a {
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    display: flex;
    align-items: center;
    padding: 8px 12px !important;
}

.top-nav li:last-child a {
    margin-right: 0;
}

.reg-btn,
.user-menu {
    border: 2px solid var(--primary-color);
    color: var(--primary) !important;
    padding: 3px 20px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 12px;
}



/* End Navigation Area */


/* Banner Area */

.site-banner {
    background: url("../img/decoration.png") no-repeat;
    background-size: cover;
    width: 100%;
}

/* .site-banner-overlay {
    display: flex;
    align-items: center;
    height: 100%;
    background: linear-gradient(
      279.58deg,
      rgba(103, 0, 151, 0.75) -55.92%,
      rgba(80, 192, 255, 0.75) 141.72%
    );
  } */

.slider-title h1 {
    font-weight: 700;
    font-size: 30px;
    color: #333;
}

.slider-title p {
    font-size: 16px;
    color: #888;
}

.slider-title a {
    padding: 10px 20px;
}

/* End Banner Area */



/* Start Service Area */

.services {
    background-position: center;
    background-size: contain;
}


.service-card {
    background: #fff;
    box-shadow: 0 10px 20px rgba(97, 105, 140, .1);
    border-radius: 0px 0px 10px 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    transition: all 300ms;
}

.services p {
    color: #808080;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 7px;
}


.services .card:hover {
    transition: 0.7s ease-in-out;
    transform: translateY(-20px);
}


/* End Service Area */



/* Start Join Area */


.join-area .para {
    font-style: normal;
    padding: 0.4rem 0;
    color: #808080;
    font-weight: 300;
    line-height: 28px;
}


/* End Join Area */


/*Start Team*/

.team-area {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 47px;
    line-height: 70px;
    color: #333333;
}

.team-border {
    background: var(--primary-color2);
    width: 100px;
    height: 5px;
}

/*End Team*/


/* Start Top Media Area */

.top-media {
    padding: 8rem 5rem;
}

.top-media h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 38px;
    color: #000000;
}

.top-media .paragraph p {
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    color: #808080;
}

/* Start Top Media Area */



/* Start Mission Area */

.mission-img img {
    right: 700px;
}

.mission-title {
    display: flex;
    align-items: center;
}

.mission-title h6 {
    font-weight: normal;
    font-size: 18px;
}

.mission-title h6 strong {
    color: var(--primary-color);
}

.mission-title>div {
    position: relative;
    padding: 20px 0;
}

.mission-title>div::after {
    content: "";
    height: 100%;
    background: #f2f2f2;
    width: 100px;
    position: absolute;
    top: 0;
    z-index: -1;
    left: -20px;
}

/* End Mission Area */



/* Start Team About Us */

.about-area {
    background: var(--primary-color2);
    background-size: cover;
    height: 400px;
    width: 100%;
    color: #ffffff;
}

.about-title {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 600;
    color: #ffffff;
}

.about-area p {
    font-size: 22px;
    font-weight: 300;
    margin: 20px 0;
}

/* End Team About Us */



/* Start Media Center */

.media-center-card h5 {
    color: #333333;
    font-size: 18px;
}

.media-center-card p {
    font-size: 16px;
    line-height: 28px;
    color: #555555;
    margin: 20px 0;
}

.media-center-card .card-body {
    margin-top: 30px;
}

.sevices-img {
    position: relative;
}

.sevices-img>img {
    width: 100%;
}

.media-member-card {
    display: flex;
    align-items: center;
    background: #edf1fd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 16px;
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.media-member-card>div {
    margin-left: 20px;
    text-align: left;
}

.media-member-card h6 {
    margin-bottom: 0;
}

.media-member-card small {
    color: #a7a7a7;
}

/* Start Media Center */


/* Start Course Area */

.course-area {
    background: #f5f5fe;
}

.course-card {
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
}

.course-card {
    text-align: center;
}

/* End Course Area */


/* Start Media Center */

.media-btn button {
    background: var(--primary-color2);
    border-radius: 5px;
    color: #fff;
    padding: 8px 20px;
    font-weight: 500;
    border: none;
    font-size: 14px;
    outline: none;
}

.media-btn button:hover {
    color: #fff;
}

/* End Media Center */


/* Start Goal area */

.goal-number {
    background: linear-gradient(128.68deg, #670097 -74.91%, #50c0ff 171.97%);
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    padding: 10px;
}

/* End Goal area */





.login-selector {
    padding: 5px 20px;
    text-align: center;
    cursor: pointer;
    background: #eee;
    border: 1px solid #eee;
    width: 110px;
}

.lsactive {
    background: var(--primary);
    color: #fff;
}


.login-selector:first-child {
    border-radius: 4px 0 0 4px;
}

.login-selector:last-child {
    border-radius: 0 4px 4px 0;
}






/* admin css -------------------------------------------- */


[v-cloak] {
    display: none;
}

.ck-editor__editable,
textarea {
    min-height: 150px;
}

.datatable {
    width: 100% !important;
}

table.dataTable tbody td.select-checkbox::before,
table.dataTable tbody td.select-checkbox::after,
table.dataTable tbody th.select-checkbox::before,
table.dataTable tbody th.select-checkbox::after {
    top: 50%;
}

.dataTables_length,
.dataTables_filter,
.dt-buttons {
    margin-bottom: 0.333em;
    margin-top: .2rem;
}

.dataTables_filter {
    margin-right: .2rem;
}

.dt-buttons .btn {
    margin-left: 0.333em;
    border-radius: 0;
}

.table.datatable {
    box-sizing: border-box;
    border-collapse: collapse;
}

table.dataTable thead th {
    border-bottom: 2px solid #c8ced3;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #c8ced3;
}

.select2 {
    max-width: 100%;
    width: 100% !important;
}

.select2-selection__rendered {
    padding-bottom: 5px !important;
}

.has-error .invalid-feedback {
    display: block !important;
}

.btn-info,
.badge-info {
    color: white;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-image: none;
}

.sidebar .nav-item {
    cursor: pointer;
}

.btn-default {
    color: #23282c;
    background-color: #f0f3f5;
    border-color: #f0f3f5;
}

.btn-default.focus,
.btn-default:focus {
    box-shadow: 0 0 0 .2rem rgba(209, 213, 215, .5);
}

.btn-default:hover {
    color: #23282c;
    background-color: #d9e1e6;
    border-color: #d1dbe1;
}

.btn-group-xs>.btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.searchable-title {
    font-weight: bold;
}

.searchable-fields {
    padding-left: 5px;
}

.searchable-link {
    padding: 0 5px 0 5px;
}

.searchable-link:hover {
    cursor: pointer;
    background: #eaeaea;
}

.select2-results__option {
    padding-left: 0px;
    padding-right: 0px;
}

.form-group .required::after {
    content: " *";
    color: red;
}

.form-check.is-invalid~.invalid-feedback {
    display: block;
}

.c-sidebar-brand .c-sidebar-brand-full:hover {
    color: inherit;
}

.custom-select.form-control-sm {
    padding: 0.25rem 1.5rem;
}


.toasted-container.top-right {
    top: 5% !important;
    right: 1% !important;
}

.c-sidebar-nav-link a {
    font-size: 13px;
}


.c-sidebar-nav-icon {
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-sidebar-nav-dropdown-toggle,
.c-sidebar-nav-link {
    padding: .7rem 1rem;
}

.product-tabs {
    background: #fff;
    padding: 0.5rem;
    border-radius: 4px;
}

.card {
    border: none;
}

.upload-button {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed #bbb;
    padding: 10px;
    cursor: pointer;
}

.upload-button i {
    font-size: 2rem;
    color: #ddd
}

.upload-button p {
    color: #888;
}

.product-image-loader {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 150px;
    max-height: 150px;
}

.product-image-loader>div {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.product-image-loader>div i {
    font-size: 2rem;
}

.product-image {
    position: relative;
}

.product-image-actions {
    position: absolute;
    top: 5px;
    right: 5px;
}



.document-box {
    margin: 20px;
    background: #eee;
    border-radius: 6px;
    text-align: center;
}

.document-box div {
    padding: 15px;
}


.document-box a {
    display: block;
    padding: 5px;
    background: #ddd;
    font-size: 14px;
}

[v-cloak] {
    display: none;
}


.campaign-send .tox-tinymce {
    height: 700px !important;
}


.user-circle {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #fff;
    border-radius: 20px;
    padding: 2px;
    font-size: 10px;
}

.user-circle-red {
    color: red;
}

.user-circle-green {
    color: green;
}

.chat-active {
    background-color: #fafafa;
}

.chat-history li {
    list-style: none;
}

.chat-message {
    color: #1e1e2d;
    word-break: break-word;
    font-weight: 500;
    word-spacing: 1px;
    padding: 10px 12px;
}

.chatmsg-left .chat-message {
    border-radius: 0 15px 15px 15px;
    background-color: #f8f5ff !important;
}


.chatmsg-right .chat-message {
    border-radius: 15px 0 15px 15px;
    background-color: #f1faff !important;
}

.chat-list,
.chat-history {
    height: 300px;
    overflow-y: auto;
}

.chat-history {
    display: flex;
    flex-direction: column-reverse;
}

.last-message img {
    width: 18px;
}

.chat-message.sent-image {
    width: 200px;
}



.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #525f7f;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0 solid rgba(0, 0, 0, 0.15);
    border-radius: 0.3rem;
    box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1), 0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-menu-end:before {
    background: #fff;
    box-shadow: none;
    content: '';
    display: block;
    height: 16px;
    width: 16px;
    right: 25px;
    position: absolute;
    bottom: 100%;
    transform: rotate(-45deg) translateY(1rem);
    z-index: -5;
    border-radius: 0.2rem;
}

.dropdown-menu .dropdown-item {
    padding: 0.6rem;
    font-size: 0.875rem;
}



.services-title h1 {
    font-weight: 700;

}


.form-round {
    color: #666;
    border: 1px solid #ddd;
    border-radius: 50px !important;
    padding: 8px 15px;
    height: 55px;
    outline: none;
}

.required::after {
    content: " *";
    color: red;
}


.subscribe input {
    border-radius: 4px !important;
}


.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary);
}


.search-inputs input {
    border-radius: 4px 0 0 4px !important;
    border-right: 0px solid;
}


.seller-logo img {
    height: 90px;
}



.blog-item {
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(97, 105, 140, 0.1);
}

.blog-thumb {
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    transform: scale(1);
    transition: 1s linear;
}

.blog-content {
    padding: 40px 30px;
}

.blog-item:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-content h4 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 18px;
}

.blog-meta span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary)
}




.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}


.fixed-top {
    background: #fff;
    -webkit-box-shadow: 0px 18px 40px -30px rgba(35, 38, 58, 0.21);
    box-shadow: 0px 18px 40px -30px rgba(35, 38, 58, 0.21);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
}



@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

@-moz-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}


.bg-primary {
    background: var(--primary) !important;
}

.rating-color {
    color: rgb(245, 165, 35);
    font-size: 12px;
}

span.punit {
    font-size: 12px;
    color: #777;
}


/*************** Contact Area CSS ***************/

.contact-area {
    background: #f2f2f2;
}

.contact-area h4 {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5rem;
    position: relative;
}


.contact-area h4::after {
    content: "";
    display: block;
    border-bottom: 2px solid var(--primary);
    width: 50px;
    margin: 0 auto;
    margin-top: 10px;
}


.contact-area h6 {
    color: var(--primary);
    font-weight: 600;
}



.contact-form,
.address-content {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}


.contact-form button {
    width: 100%;
    margin-bottom: 10px;
}

.address-content {
    height: 100%;
}

.address-info {
    padding-bottom: 20px;
}

.address-info p {
    display: flex;
    margin-bottom: 5px;
}


.contact-box-social i {
    font-size: 14px !important;
}

.btn-soft-primary {
    background-color: #F3E5F5;
    color: var(--primary);
}

.rating i.hover,
.rating i.active,
.text-rating {
    color: #ffa707;
}

.rating-sm i {
    font-size: 0.8125rem;
}


.pagination {
    flex-wrap: wrap;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .slider-title h1 {
        font-size: 35px;
        padding-top: 30px;
    }

    .slider-title p {
        font-size: 18px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .slider-title h1 {
        font-size: 40px;
        padding-top: 0px;
    }

    .slider-title p {
        font-size: 20px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .slider-title h1 {
        font-size: 50px;
        padding-top: 0px;
    }

    .slider-title p {
        font-size: 20px;
    }

    .join-area .para {
        font-size: 20px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}


.login-btn {
    background: transparent;
    outline: none;
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #e8e8e8;
    border-radius: 30px;
    cursor: pointer;
    color: #fff !important;
    font-size: 14px !important;
}

.top-menu {
    padding: 0 !important;
    margin: 0 !important;
}



.top-menu li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
    padding: 0px 10px;
}

.top-menu li a {
    color: #fff !important;
}

/* Start search area */
.search-box {
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.input-group .form-select-ltr {
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    background-color: #CECECE !important;
}

.input-group .form-select-rtl {
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    background-color: #CECECE !important;
}

.input-group .form-control-rtl {
    border-radius: 0 !important;
}

.input-group .btn-search {
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    background-color: #fff !important;
    color: #000 !important;
}

.input-group .btn-search-rtl {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    background-color: #fff !important;
    color: #000 !important;
}


.favorite-btn {
    background: transparent;
    outline: none;
    padding: 5px;
    cursor: pointer;
    color: #fff !important;
    font-size: 14px !important;
    border: none !important;
    background: #2F1171;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 5px !important;
}

.cart-btn {
    position: relative;
    background: transparent;
    outline: none;
    padding: 5px;
    cursor: pointer;
    color: #fff !important;
    font-size: 14px !important;
    border: none !important;
    background: #2F1171;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 5px !important;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    width: 30px;
    height: 20px;
    border-radius: 50px;
    background: red;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

/* End search area */
.p-card {
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 0.5px solid #eee;
}

.p-card img {
    width: 100%;
    height: 140px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.p-card h5 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.p-card p {
    font-size: 12px;
    color: #000;
    margin-bottom: 5px;
}
.p-card a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.border-bottom-1 {
    border-bottom: 1px solid #ddd;
}


.category-card {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 20px
}

.category-card label {
    font-size: 16px;
    font-weight: bold;
    color: #662D91;
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px solid #ddd;
}

.category-card .item .list-group .list-group-item{
    border: none !important;
    padding: 5px 0;
    font-size: 14px;
}

.category-card .item .list-group .list-group-item a{
    color: #000;
    text-decoration: none;
}
.category-card .item .list-group .list-group-item a:hover{
    color: #662D91;
    text-decoration: none;
}
.category-card .item .list-group .see-all{
    margin: 10px 0;
    font-size: 14px;
    font-weight: bold;
}

.category-card .item .list-group .see-all a{
    text-decoration: underline;
    color: #0059FF !important;
}
.category-card .item .list-group .see-all a:hover{
    color: #0059FF !important;
    text-decoration: none;
}


#market-place-banner {
    background-size: cover;
    background-position: center;
    height: 350px;
    padding: 20px;
    margin-top: 30px;
    border-radius: 20px;
}

#market-place-banner .banner-content {
    max-width: 500px;
}
#market-place-banner h1 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    line-height: 45px;
    padding: 20px 0;
}
#market-place-banner p {
    max-width: 400px;
    font-size: 14px;
    color: #000;
    line-height: 25px;
    font-weight: 300;
}
.market-place-btn {
    display: flex;
    justify-content: start;
    gap: 20px;
}
.market-place-btn a {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
}
.market-place-btn a.btn-shop-now {
    background-color: #5E00A5;
    color: #fff;
}
.market-place-btn a.btn-sell {
    background: transparent;
    color: #5E00A5;
    border: 1px solid #5E00A5;
}
.market-place-btn a:hover {
    opacity: 0.8;
}


.card-image {
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;

    display: flex;
}

.features-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.feature-card {
    position: relative;
    padding: 30px;
    text-align: start;
     height: 200px;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .feature-card {
        height: 200px;
    }

    .feature-card img {
        width: 100px;
        height: 100px;
    }
}

.bg-1{
    background: #B9DDFF !important;
}

.bg-2{
    background: #FEFFDA !important;
}

.bg-3{
    background: #FFD4D4 !important;
}

.feature-image {
    position: absolute;
    top: 90px;
    right: 10px;
    width: 150px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    z-index: 1;
}

.feature-card img {
    width: 150px;
    height: 100px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0d6efd;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    color: #6c757d;
    margin-bottom: 20px;
}

.learn-more-btn {
    color: #000;
    text-decoration: underline;
}

.pm-card .card-body{
    height: 400px !important;
    width: 100%;
}

.pm-card .card-body .pm-content h5{
    width: 200px !important;
    height: 50px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: auto !important;
}

.pm-card .card-body .pm-content{
    height: 200px !important;
    width: 100%;
    align-items: center !important;
    justify-content: center !important;
    margin: auto !important;
    text-align: center !important;
    position: absolute !important;
    top: 20% !important;
}

.btn-download {
    background: transparent;
    color: #0059FF !important;
    padding: 10px 20px;
    border-radius: 30px !important;
    border: 1px solid #0059FF !important;
    font-size: 16px;
    font-weight: bold;

}

.group-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 200px !important;
}
.group-img img {
    width: 90%;
    height: 200px !important;
    border-radius: 20px;
}


@media screen and (max-width: 768px) {
    .header-banner-btn-list {
        display: block !important;
        text-align: center !important;
        margin: 20px auto !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .header-banner-btn-list a {
        display: block !important;
        margin: 10px auto !important;
        width: 100% !important;
        text-align: center !important;
    }

    .get-notification .get-notification-card h1{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 20px;
        text-align: center;
        padding: 0 20px;
        line-height: 30px;
        width: 100%;
        margin: auto;
        margin-top: 20px;
    }

    .get-notification-form{
        margin-bottom: 20px;
    }

    .main-menu{
        padding-top: 10px !important;
    }

    .top-menu{
        display: flex !important;
        align-items: start !important;
        justify-content: start !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .top-menu li{
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }

    .top-menu li a{
        padding: 10px 20px !important;
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .top-menu li a:hover{
        background: #fff !important;
        color: #000 !important;
    }

    .right-side{
        position: absolute !important;
        top: 25px;
        right: 10px !important;
    }
    
    .left-side{
        position: absolute !important;
        top: 25px;
        left: 10px !important;
    }

    .sm-none{
        display: none !important;
    }

    .sm-mt-20{
        margin-top: 80px !important;
    }

    .search-box{
        position: absolute !important;
        top: 100px;
        left: 0px !important;
        width: 100% !important;
    }

    .sm-category{
        position: absolute !important;
        top: 200px;
    }

    .search-box form{
        width:90% !important;
        height: 70px !important;
    }

    .search-box form input{
        height: 55px !important;
    }

    .search-box form input{
        font-size: 16px !important;
    }

    .btn-search i{
        font-size: 16px !important;
    }

    #market-place-banner {
        height: 420px !important;
        background-color: #F2EDE7 !important;
        background-position: bottom !important;
        background-repeat: no-repeat;
        background-size: 600px 150px !important; /* width auto, height 150px */
    }
}



.vendor-card {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    margin: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.vendor-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.vendor-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.vendor-details {
    flex: 1;
}

.vendor-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.vendor-subtitle {
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.vendor-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.vendor-card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
    flex-wrap: wrap;
    gap: 10px;
}

.vendor-card-footer .f-card {
    flex: 1;
    min-width: 150px;
    padding-right: 20px;
    position: relative;
}

.vendor-card-footer .f-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 10px;
    height: 100%;
    width: 1px;
    background: #ccc;
}

.vendor-card-footer .f-card:last-child::after {
    display: none;
}

.ms-2 {
    margin-left: 8px;
}

.product-link {
    color: #007bff;
    text-decoration: none;
}

.rtl-image{
    background-position: left !important;
}


.rtl-banner-content {
    text-align: right !important;
}

.rtl-feature-image {
    left: 10px !important;
    right: auto !important;
}


.our-market-place {
    padding: 60px 0;
    background: #f8f9fa;
}

.our-market-place-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid #CCCCCC;
    transition: all 0.3s ease;
}

.our-market-place-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    position: relative;
}

.our-market-place-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}


.our-market-place-box img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}


.our-market-place-box p {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.our-market-place-box-option {
    height: 160px;
    background: linear-gradient(145deg, #e0e0e0, #ffffff);
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    color: #555;
    font-size: 18px;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.our-market-place-box-option span {
    display: block;
}
