    /*==css=======================================*/
    * {
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
        font-family: 'Open Sans', sans-serif;
    }

    a {
        text-decoration: none;
    }

    body {
        margin: 0px;
        padding: 0px;
        background: #343f4f !important;
    }
    .nav {
        position: fixed !important;
    }
    
    .container-fluid {
        background-color: rgb(15, 12, 12);
        border-radius: 10px;
    }
    
    .nav-item::after {
        content: '';
        height: 5px;
        color: orangered;
        width: 100%;
    }
    
    .navbar-brand {
        font-size: 28px !important;
        padding-right: 100px;
        color: #fff !important;
        border-left: 2px solid #ff4500;
    }
    
    .navbar-brand span{
         color: #ff4500 !important;
    }
    
    .navbar-brand:hover{
        font-size: 28px !important;
        padding-right: 100px;
        color: #fff !important;
        border-left: 2px solid #ff4500 !important;
        background: transparent !important;
    }
    
    .navbar-brand:hover span{
        color: #ff4500 !important;
    }
    
    .dropdown-menu {
        background-color: rgb(56, 49, 49) !important;
        color: white !important;
        transition: .5s;
    }
    
    .dropdown-menu:hover {
        color: orangered !important;
    }
    
    a {
        color: white !important;
        font-size: 18px !important;
        transition: .5s;
    }
    
    a:hover {
        color: orangered;
        border-bottom: 1px solid white;
    }
    
    h3 {
        color: #fefefe;
        word-spacing: 15px;
        transition: .5s;
    }
    
    h3:hover {
        color: orangered;
    }
    
    .icons {
        display: flex !important;
        padding-left: 30px;
        margin-top: 15px;
    }
    
    .fa {
        padding-left: 30px;
        font-size: 20px !important;
    }
    
    .logo {
        color: orangered !important;
        transition: .5s;
    }
    
    .logo:hover {
        color: white !important;
    }
    
    .search-box {
        position: relative;
        margin-left: 140px;
        margin-top: -9px;
    }
    
    .search-box input {
        width: 300px;
        height: 40px;
        border: none;
        outline: none;
        background-color: white;
        border-radius: 30px;
        font-size: 16px;
        position: relative;
        display: block;
        padding: 20px;
    }
    
    .search-box button {
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 30px;
        border: none;
        position: absolute;
        top: 0;
        left: 87%;
        background-color: orangered;
    }
    
    .search-box i {
        color: white;
        margin-right: 50px;
        position: absolute;
        top: 10px;
        right: 0;
        left: -42%;
    }
    /*===Product-slider=================================*/
    .product-slider {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        width: 90%;
        margin: auto;
        margin: 40px auto;
        height: auto;
    }

    .slider-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .product-slider-heading {
        font-size: 28px;
        text-transform: uppercase;
        font-family: 'Open Sans', sans-serif;
        color: #fff;
    }

    .product-box {
        width: 100%;
        padding: 15px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        position: relative;
        border-radius: 10px;
        box-shadow:
            -5px -5px 15px rgba(255, 255, 255, 0.1),
            5px 5px 15px rgba(0, 0, 0, 0.35),
            inset -5px -5px 15px rgba(255, 255, 255, 0.1),
            inset 5px 5px 15px rgba(0, 0, 0, 0.35),
            0px 10px 10px rgba(0, 0, 0, 0.2);
        height: auto;
        background: #fff;
    }

    .product-img-container {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        overflow: hidden;
    }

    .product-img a,
    .product-img {
        width: 100%;
        height: 300px;
        display: flex;
    }

    .product-img a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        animation: fade 0.6s;
        border-radius: 10px;
    }

    .product-img-back {
        display: none;
    }

    .product-img-container:hover .product-img-back {
        display: block;
    }

    .product-img-container:hover .product-img-front {
        display: none;
    }

    @keyframes fade {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .product-box-offer {
        position: absolute;
        left: 30px;
        top: 20px;
        width: 65px;
        height: 24px;
        color: #ffffff;
        background-color: #e63b3b;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.7rem;
        letter-spacing: 1px;
        transition: none !important;
        animation: none;
        z-index: 100;
        font-family: 'Open Sans', sans-serif;
    }

    .product-box-text {
        margin-top: 5px;
        font-family: 'Open Sans', sans-serif;
    }

    .product-title {
        color: #333333;
        font-weight: 600;
        transition: all ease 0.3s;
        text-decoration: none;
        font-size: 20px;
    }

    .product-title:hover {
        opacity: 0.7;
        transition: all ease 0.3s;
    }

    .product-category {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        color: #ff25257c;
    }

    .product-category span {
        color: #a3a1a1;
        font-size: 0.9rem;
        margin: 5px 0px;
    }

    .price-buy {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
    }

    .price-buy .p-price {
        font-size: 1.3rem;
        color: #333333;
        font-weight: 700;
    }

    .price-buy .p-buy-btn {
        color: #e63b3b;
        margin: 0px 5px;
        font-weight: 500;
        text-decoration: none;
    }

    .price-buy .p-buy-btn:hover {
        text-decoration: underline;
    }

    .slider-btns {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin: 10px auto 10px auto;
    }

    .swiper-button-next,
    .swiper-button-prev {
        position: static !important;
        transform: translate(0, 0);
        margin: 10px 0px 0px 10px !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px !important;
        font-weight: 800;
        color: #fff;
    }

    @media(max-width:700px) {
        .product-slider-heading {
            text-align: center;
            font-size: 1.3rem;
        }

        .product-slider {
            width: 100%;
        }

        .product-img a,
        .product-img {
            height: 230px;
        }

        .product-img a img {
            animation: none;
        }

        .product-img-back {
            display: none;
        }

        .product-img-container:hover .product-img-back {
            display: none;
        }

        .product-img-container:hover .product-img-front {
            display: block;
        }
    }

    @media(max-width:400px) {

        .product-img a,
        .product-img {
            height: 190px;
        }

        .product-box-offer {
            top: 10px;
            left: 20px;
        }
    }


    .product-box1 {
        width: 27.8%;
        gap: 50%;
        float: left;
        padding: 15px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        position: relative;
        border-radius: 10px;
        box-shadow: -5px -5px 15px rgb(255 255 255 / 10%),
            5px 5px 15px rgb(0 0 0 / 35%),
            inset -5px -5px 15px rgb(255 255 255 / 10%),
            inset 5px 5px 15px rgb(0 0 0 / 50%),
            0px 10px 10px rgb(0 0 0 / 20%);
        background: #fff;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        flex-basis: 25%;
        margin: 2%;
    }



    .seperate {
        margin-left: 5%;
    }


    @media(max-width:1024px) {
        .product-box1 {
            width: 43%;
        }
    }

    @media(max-width:700px) {
        .product-box1 {
            width: 45%;
        }

        .seperate {
            margin-left: 1%;
        }
    }

    @media screen and (max-width:445px) {
        .product-box1 {
            width: 93%;

        }

        .seperate {
            margin-left: 2.3%;
        }
    }






    .menu-preview {
        position: fixed;
        top: 0;
        left: 0;
        min-height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        border-radius: 10px;
    }

    .menu-preview .preview {
        display: none;
        padding: 0.5rem;
        text-align: center;
        position: relative;
        /* margin: 1rem; */
        width: 350px;
        background: #fff;
        border-radius: 10px;
        box-shadow: -5px -5px 15px rgb(255 255 255 / 10%),
            5px 5px 15px rgb(0 0 0 / 35%),
            inset -5px -5px 15px rgb(255 255 255 / 10%),
            inset 5px 5px 15px rgb(0 0 0 / 50%),
            0px 10px 10px rgb(0 0 0 / 20%);
    }

    .menu-preview .preview.active {
        display: inline-block;
    }


    .menu-preview .preview a:hover {
        background: none;
        color: #333;
    }

    .fa-xmark {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        z-index: 2;
        transition: transform .5s;
    }

    .fa-xmark:hover {
        transform: rotate(180deg);
        color: #e63b3b;
    }

    .menu .items {
        display: flex;
        flex-direction: column;
    }

    .product-categories .items div {
        color: #333;
    }

    .product-categories {
        margin-top: 20px;
        display: flex;
        justify-content: space-around;
    }


    .progress{
        width: 90%;
        border-radius: 50rem;
        border: none;
        outline: none;
        background: #a3a1a1;
        height: 10px;
        margin-top: 20px;
        margin-left: 5%;
    }

    .progress-bar{
        height: 10px;
        width: 0;
        background: #e63b3b;
        border-radius: 50rem;
    }

    .overall{
        font-size: 15px;
        display:flex;
        justify-content: space-between;
        margin: 0 5%;
        font-weight: 900;
        color: #e63b3b;
    }

    .rating{
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .rating label{
        font-size: 12px;
        margin-top: 5px;
        text-align: left;
        margin-left: 5%;
        float: left;
        font-weight: 700;
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .perc{
        float: right !important;
        margin-right: 6%;
    }


    /* .rating1 */
    .rating1 .bar1{
        width: 96%;
    }

    .rating1 .bar2{
        width: 100%;
    }

    .rating1 .bar3{
        width: 100%;
    }

    .rating1 .bar4{
        width: 95%;
    }
    .rating1 .bar5{
        width: 100%;
    }

/* .rating2 --------- rating3 ------------rating5*/
    .rating2 .bar1,.rating3 .bar1{
        width: 100%;
    }

    .rating2 .bar2,.rating3 .bar2{
        width: 100%;
    }

    .rating2 .bar3,.rating3 .bar3{
        width: 100%;
    }

    .rating2 .bar4,.rating3 .bar4{
        width: 99%;
    }
    .rating2 .bar5,.rating3 .bar5{
        width: 100%;
    }

    /* .rating4 */

    .rating4 .bar1{
        width: 56%;
    }
    .rating4 .bar2{
        width: 96%;
    }
    .rating4 .bar3{
        width: 96%;
    }
    .rating4 .bar4{
        width: 84%;
    }
    .rating4 .bar5{
        width: 100%;
    }