@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Yeseva+One&display=swap');

body {
    font-family: "Raleway", sans-serif !important;
    font-style: normal;
    color: #fff;
    font-optical-sizing: auto;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

p {
    font-weight: 300;
}

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

    a:hover {
        color: #d9ba85;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Yeseva One", serif !important;
    font-weight: 400;
    font-style: normal;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #1a1814;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #1a1814;
        border-top-color: var(--primary-color);
        ;
        border-bottom-color: var(--primary-color);
        ;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid var(--primary-color);
    ;
}

    .back-to-top i {
        font-size: 28px;
        color: var(--primary-color);
        ;
        line-height: 0;
    }

    .back-to-top:hover {
        background: var(--primary-color);
        ;
        color: #1a1814;
    }

        .back-to-top:hover i {
            color: #444444;
        }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: var(--primary-color);
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 1111;
}

    #topbar.topbar-scrolled {
        top: -40px;
    }

    #topbar .contact-info i {
        font-style: normal;
        color: #fff;
    }

        #topbar .contact-info i span {
            padding-left: 5px;
            color: #fff;
        }

    #topbar .languages ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        color: var(--primary-color);
        ;
    }

        #topbar .languages ul a {
            color: white;
        }

        #topbar .languages ul li + li {
            padding-left: 10px;
        }

            #topbar .languages ul li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: rgba(255, 255, 255, 0.5);
                content: "/";
            }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 40px;
}

    #header.header-scrolled {
        top: 0;
        background: rgba(0, 0, 0, 0.85);
        border-bottom: 1px solid #37332a;
    }

    #header .logo {
        font-size: 28px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 300;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 119px;
        }

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
    background: none;
    font-family: 'Yeseva One';
    margin: 0 0 0 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0;
    padding: 8px 25px;
    /* text-transform: uppercase; */
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

    .book-a-table-btn:hover {
        background: var(--primary-color);
        ;
        color: #fff;
    }

@media (max-width: 992px) {
    .book-a-table-btn {
        margin: 0 15px 0 0;
        padding: 8px 20px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        color: #000;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 14px;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--Nav-hover);
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            color: #444444;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: var(--primary-color);
                ;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #212529;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 6px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #1a1814;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: var(--primary-color);
            ;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: var(--primary-color);
                ;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 25vh;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
    padding: 0;
}

    #hero:before {
        content: "";
        background: rgba(0, 0, 0, 0);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        padding-top: 110px;
    }

@media (max-width: 992px) {
    #hero .container {
        padding-top: 98px;
    }
}

#hero h1 {
    margin: 0;
    font-size: 85px;
    line-height: 56px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

    #hero h1 span {
        color: var(--primary-color);
    }

.hero-span {
    color: var(--Nav-span);
    font-size:25px;
    /*line-height:25px;*/
    padding-left:40px;
}


#hero h2 {
    line-height: 92px;
    color: #fff;
    margin-bottom: 10px 0 0 0;
    font-size: 56px;
}

#hero .btns {
    align-content: center !important;
    display: flex;
    margin-top: 10px;
}

#hero .btn-menu,
#hero .btn-book {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    align-items: center;
    text-transform: uppercase;
    display: inline-flex;
    padding: 10px 30px;
    border-radius: 0;
    transition: 0.3s;
    line-height: 1;
    color: white;
    border: 2px solid var(--primary-color);
}

    #hero .btn-menu:hover,
    #hero .btn-book:hover {
        background: var(--primary-color);
        ;
        color: #fff;
    }

#hero .btn-book {
    margin-left: 15px;
}

#hero .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--primary-color);
    50%, rgba(205, 164, 94, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

    #hero .play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    #hero .play-btn::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid var(--primary-color);
        ;
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    #hero .play-btn:hover::after {
        border-left: 15px solid var(--primary-color);
        ;
        transform: scale(20);
    }

    #hero .play-btn:hover::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

@media (min-width: 1600px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero .play-btn {
        margin-top: 30px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: auto;
    }

        #hero .container {
            padding-top: 130px;
            padding-bottom: 60px;
        }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 20px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 50px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #000;
}

#menu.section-bg {
    background-color: #fff;
}

.section-title {
    padding-bottom: 40px;
}



    .section-title small {
        font-size: 12px !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        color: var(--grey) !important;
    }

    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        color: var(--primary-color);
        ;
    }

    .section-title h3 {
        margin: 0;
        margin: 0;
        font-size: 40px;
        color: #fff;
    }
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #1d1b16;
    margin-top: 110px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 98px;
    }
}

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #37332a;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    position: relative;
    padding: 80px 0;
}



    .about .about-img {
        text-align: center;
        position: relative;
        transition: 0.5s;
    }

        .about .about-img img {
            max-width: 95%;
            border: 4px solid rgba(255, 255, 255, 0.2);
            position: relative;
        }

        .about .about-img::before {
            position: absolute;
            left: 43px;
            top: 20px;
            width: 60px;
            height: 60px;
            z-index: 1;
            content: "";
            border-left: 5px solid var(--primary-color);
            ;
            border-top: 5px solid var(--primary-color);
            ;
            transition: 0.5s;
        }

        .about .about-img::after {
            position: absolute;
            right: 43px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            z-index: 2;
            content: "";
            border-right: 5px solid var(--primary-color);
            ;
            border-bottom: 5px solid var(--primary-color);
            ;
            transition: 0.5s;
        }

        .about .about-img:hover {
            transform: scale(1.03);
        }

            .about .about-img:hover::before {
                left: 10px;
                top: 10px;
            }

            .about .about-img:hover::after {
                right: 10px;
                bottom: 10px;
            }

    .about .content {
        position: relative;
    }

        .about .content h3 {
            font-weight: 600;
            font-size: 26px;
        }

        .about .content ul {
            list-style: none;
            padding: 0;
        }

            .about .content ul li {
                padding-bottom: 10px;
            }

            .about .content ul i {
                font-size: 20px;
                padding-right: 4px;
                color: var(--primary-color);
                ;
            }

        .about .content p:last-child {
            margin-bottom: 0;
        }

@media (min-width: 1024px) {
    .about {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
    text-align: center;
    padding: 50px 30px;
    transition: 0.5s ease-in-out;
    background: #ffffff;
}

    .why-us .box span {
        transition: 0.5s ease-in-out;
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-color);
        ;
    }

    .why-us .box h4 {
        transition: 0.5s ease-in-out;
        font-size: 24px;
        /* font-weight: 600; */
        padding: 0;
        margin: 20px 0;
        color: var(--primary-color);
    }

    .why-us .box p {
        color: var(--grey);
        font-size: 15px;
        margin: 0;
        padding: 0;
    }

    .why-us .box:hover {
        transition: 0.1s all;
        background: var(--primary-color);
        padding: 30px 30px 70px 30px;
        box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
    }

        .why-us .box:hover span,
        .why-us .box:hover h4,
        .why-us .box:hover p {
            transition: 0.5s ease-in-out;
            color: #fff;
        }

section#why-us small {
    color: var(--primary-color) !important;
}

section#why-us h2 {
    color: #000;
}

section#why-us .box span img {
    transition: 0.5s ease-in-out;
    height: 41px;
}

.why-us .box:hover span img {
    transition: 0.1s all;
    filter: brightness(10);
}
/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
    margin-top: -64px !important;
    padding: 0;
    margin: 0 auto 0 auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

    .menu #menu-flters li {
        background: #0000008a;
        width: 127px;
        cursor: pointer;
        display: inline-block;
        padding: 15px 12px 10px 12px;
        font-size: 17px;
        font-weight: 600;
        line-height: 1;
        color: #fff;
        margin-bottom: 10px;
        transition: all ease-in-out 0.3s;
        /* border-radius: 50px; */
        font-family: "Playfair Display", serif;
    }

        .menu #menu-flters li:hover,
        .menu #menu-flters li.filter-active {
            background: #fff;
            color: var(--primary-color);
        }

            .menu #menu-flters li:hover span,
            .menu #menu-flters li.filter-active span {
                color: var(--grey);
            }

        .menu #menu-flters li:last-child {
            margin-right: 0;
        }

.menu .menu-item {
    margin-top: 50px;
}

.menu .menu-img {
    margin-top: -9px;
    width: 100px;
    border-radius: 50%;
    float: left;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
    margin-left: 110px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}

    .menu .menu-content::after {
        content: "......................................................................" "...................................................................." "....................................................................";
        position: absolute;
        left: 20px;
        right: 0;
        top: -4px;
        z-index: 1;
        color: #bab3a6;
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    .menu .menu-content a {
        font-size: 20px;
        font-family: 'Yeseva One';
        padding-right: 10px;
        background: #fff;
        position: relative;
        z-index: 3;
        font-weight: 700;
        color: #000;
        transition: 0.3s;
    }

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

    .menu .menu-content span {
        font-size: 20px;
        background: #fff;
        position: relative;
        z-index: 3;
        padding: 0 10px;
        font-weight: 600;
        color: var(--primary-color);
        ;
    }

.menu .menu-ingredients {
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-left: 110px;
    font-size: 14px;
    font-family: "Raleway", sans-serif;
    color: var(--grey);
}

.menu #parallax {
    background-position-y: -200px !important;
    background-attachment: fixed !important;
    padding: 80px 0px 100px 0px;
    background: url(../img/hero-bg.jpg);
}

ul#menu-flters li span {
    letter-spacing: 1px;
    font-weight: 500;
    padding: 6px 6px 4px 6px;
    font-family: 'Raleway';
    display: block;
    font-size: 12px;
}

.atc-btn {
    float: right;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 11px;
    border: 1px solid var(--primary-color);
    color: aquamarine;
    text-align: right;
    line-height: 11px;
    align-items: center;
    padding: 6px 10px;
    color: var(--primary-color);
    display: inline-flex;
}

    .atc-btn:hover {
        color: #fff;
        background: var(--primary-color);
    }
/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
section#specials {
    background: #151414;
}

.specials {
    overflow: hidden;
}

    .specials .nav-tabs {
        border: 0;
    }

    .specials .nav-link {
        border: 0;
        padding: 12px 15px;
        transition: 0.3s;
        color: #fff;
        border-radius: 0;
        border-right: 2px solid var(--primary-color);
        ;
        font-weight: 600;
        font-size: 15px;
    }

        .specials .nav-link:hover {
            color: var(--primary-color);
            ;
        }

        .specials .nav-link.active {
            color: #1a1814;
            background: var(--primary-color);
            ;
            border-color: var(--primary-color);
            ;
        }

        .specials .nav-link:hover {
            border-color: var(--primary-color);
            ;
        }

    .specials .tab-pane.active {
        animation: fadeIn 0.5s ease-out;
    }

    .specials .details h3 {
        font-size: 26px;
        margin-bottom: 20px;
        color: #fff;
    }

    .specials .details p {
        color: #aaaaaa;
    }

        .specials .details p:last-child {
            margin-bottom: 0;
        }

.details .fst-italic {
    color: var(--primary-color) !important;
}

@media (max-width: 992px) {
    .specials .nav-link {
        border: 0;
        padding: 15px;
    }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
#events {
    position: relative;
    padding: 80px 0px 100px 0px;
    background: url(../img/events-bg.jpg);
}

/* .events::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
 */
.events .section-title h2 {
    color: #fff;
}

.events .container {
    position: relative;
}

@media (min-width: 1024px) {
    .events {
        background-attachment: fixed;
    }
}

.events .events-carousel {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.events .event-item {
    color: #fff;
}

    .events .event-item h3 {
        font-size: 26px;
        color: var(--primary-color);
        ;
    }

    .events .event-item .price {
        font-size: 26px;
        font-family: "Open Sans", sans-serif;
        font-weight: 700;
        margin-bottom: 15px;
    }

        .events .event-item .price span {
            border-bottom: 2px solid var(--primary-color);
            ;
        }

    .events .event-item ul {
        list-style: none;
        padding: 0;
    }

        .events .event-item ul li {
            padding-bottom: 10px;
        }

        .events .event-item ul i {
            font-size: 20px;
            padding-right: 4px;
            color: var(--primary-color);
            ;
        }

    .events .event-item p:last-child {
        margin-bottom: 0;
    }

.events .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

    .events .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.4);
        opacity: 1;
    }

    .events .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--primary-color);
        ;
    }

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
    width: 100%;
}

    .book-a-table .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .book-a-table .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .book-a-table .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .book-a-table .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .book-a-table .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .book-a-table .php-email-form .loading {
        display: none;
        text-align: center;
        padding: 15px;
    }

        .book-a-table .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid var(--primary-color);
            ;
            border-top-color: #1a1814;
            animation: animate-loading 1s linear infinite;
        }

    .book-a-table .php-email-form input,
    .book-a-table .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        background: #ffffff;
        border-color: #d5d5d5;
        color: var(--grey);
    }

section#book-a-table {
    background-color: #fff0f1 !important;
    background-size: 100% !important;
    background-position-y: top !important;
    background-repeat: no-repeat !important;
    background-image: url(../img/book-a-table-footer.jpg);
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
    border-color: var(--primary-color);
    ;
}

.book-a-table .php-email-form input {
    height: 44px;
}

.book-a-table .php-email-form textarea {
    padding: 10px 12px;
}





/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.tcontent {
    padding: 60px 0px;
}

section#testimonials {
    padding: 0px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 160px;
}

section#testimonials .swiper-pagination {
    text-align: left;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item label {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 10px;
    eway '; font-size: 12px;;
    ;
    ;
    ;
    ;
    ;
    margin: 10px 0 5px 10px;
    ;
    ;
    ;
    ;
    ;
    ;
    color: white;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--primary-color);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    /* font-style: italic; */
    /* margin: 0 15px 0 15px; */
    padding: 0px 10px 20px 10px;
    /* background: #26231d; */
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.4);
        opacity: 1;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--primary-color);
        ;
    }

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#gallery {
    background: #000;
    padding-bottom: 0;
}

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #454035;
    border-bottom: 3px solid #454035;
}

    .gallery .gallery-item img {
        transition: all ease-in-out 0.4s;
    }

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

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
    overflow: hidden;
}

    .chefs .member .member-info {
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.2s;
    }

    .chefs .member .member-info-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 10px;
        transition: bottom 0.4s;
    }

        .chefs .member .member-info-content h4 {
            font-weight: 700;
            margin-bottom: 2px;
            font-size: 18px;
            color: #fff;
        }

        .chefs .member .member-info-content span {
            font-style: italic;
            display: block;
            font-size: 13px;
            color: #fff;
        }

    .chefs .member .social {
        position: absolute;
        left: 0;
        bottom: -38px;
        right: 0;
        height: 48px;
        transition: bottom ease-in-out 0.4s;
        text-align: center;
    }

        .chefs .member .social a {
            transition: color 0.3s;
            color: #fff;
            margin: 0 10px;
            display: inline-block;
        }

            .chefs .member .social a:hover {
                color: var(--primary-color);
                ;
            }

        .chefs .member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

    .chefs .member:hover .member-info {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
        opacity: 1;
        transition: 0.4s;
    }

    .chefs .member:hover .member-info-content {
        bottom: 60px;
        transition: bottom 0.4s;
    }

    .chefs .member:hover .social {
        bottom: 0;
        transition: bottom ease-in-out 0.4s;
    }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
}

    .contact .info i {
        font-size: 20px;
        float: left;
        width: 44px;
        height: 44px;
        background: var(--primary-color);
        ;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        color: #000;
        padding: 0 0 0 60px;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 5px;
        font-family: "Raleway", sans-serif;
    }

    .contact .info p {
        font-weight: 500;
        padding: 0 0 0 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: var(--grey);
    }

    .contact .info .open-hours,
    .contact .info .email,
    .contact .info .phone {
        margin-top: 40px;
    }

.contact .php-email-form {
    width: 100%;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid var(--primary-color);
            ;
            border-top-color: #1a1814;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        background: #f6ffeb;
        border-color: #dddddd;
        color: var(--grey);
    }

        .contact .php-email-form input::-moz-placeholder,
        .contact .php-email-form textarea::-moz-placeholder {
            color: #a49b89;
        }

        .contact .php-email-form input::placeholder,
        .contact .php-email-form textarea::placeholder {
            color: #a49b89;
        }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--primary-color);
            ;
        }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }





@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: black;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .footer-top {
        background: #0c0b09;
        border-top: 1px solid #37332a;
        border-bottom: 1px solid #28251f;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 16px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 300;
                text-transform: uppercase;
                font-family: "Raleway", sans-serif;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "raleway", serif;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #28251f;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: var(--primary-color);
                ;
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            text-transform: uppercase;
            font-size: 16px;
            /* font-weight: 600; */
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: var(--primary-color);
                    ;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: var(--primary-color);
                        ;
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #0c0b09;
            padding: 6px 10px;
            position: relative;
            /* border-radius: 50px; */
            border: 1px solid #404040;
        }

            #footer .footer-top .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
                background: #0c0b09;
                color: white;
            }

            #footer .footer-top .footer-newsletter form input[type=submit] {
                position: absolute;
                top: -1px;
                right: -1px;
                bottom: -1px;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px 2px 20px;
                background: var(--primary-color);
                color: #fff;
                transition: 0.3s;
                /* border-radius: 50px; */
            }

                #footer .footer-top .footer-newsletter form input[type=submit]:hover {
                    background: #d3af71;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

.logo-box {
    -webkit-box-shadow: -1px 9px 20px -17px rgba(0,0,0,0.57);
    -moz-box-shadow: -1px 9px 20px -17px rgba(0,0,0,0.57);
    box-shadow: -1px 9px 20px -17px rgba(0,0,0,0.57);
    background: #fff;
    top: 0;
    position: absolute;
}

a.hero-number {
    line-height: 23px;
    display: inline-block;
    color: #fff;
    padding: 0px 30px;
    font-size: 23px;
}

    a.hero-number small {
        position: relative;
        top: 3px;
        color: #e0dfdf;
        /* margin-top: -3px; */
        font-weight: 400;
        font-size: 11px !important;
        display: block !important;
    }

.welcome {
    -webkit-box-shadow: -1px 9px 32px -17px rgba(0,0,0,1);
    -moz-box-shadow: -1px 9px 32px -17px rgba(0,0,0,1);
    box-shadow: -1px 9px 32px -17px rgba(0,0,0,1);
    -webkit-animation: rotating 5s linear infinite;
    -moz-animation: rotating 5s linear infinite;
    -ms-animation: rotating 5s linear infinite;
    -o-animation: rotating 5s linear infinite;
    animation: rotating 5s linear infinite;
    top: calc(50% - 45px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    text-align: center;
    z-index: 999;
    position: ABSOLUTE;
    font-size: 10px;
    color: var(--primary-color);
    border: 2px dotted var(--primary-color);
    border-radius: 100px;
    background: #fff;
    width: 90px;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

section#menu span img {
    fill: #ccc !important;
    width: 42px;
}

.winner {
    display: flex;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 800;
    padding: 7px;
    align-items: center;
    justify-content: CENTER;
    border: 2px dotted var(--primary-color);
    border-radius: 200px;
    height: 80px;
    width: 80px;
}

small + h2 {
    margin-bottom: 0px;
    font-size: 40px;
    color: var(--primary-color);
}

section#about p {
    color: var(--grey);
}

.wsign label {
    padding: 60px 40px 10px 40px;
    text-transform: uppercase;
    display: block;
    color: #000;
}

section#why-us {
    background: var(--light-bg);
}

.cartbox {
    margin-left: 40px;
    padding: 10px;
    border: 3px solid #fff;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
    display: inline-flex;
    height: 38px;
    width: 38px;
    background: var(--primary-color);
}

    .cartbox span {
        right: -10px;
        top: -7px;
        font-size: 11px;
        border-radius: 40pc;
        align-items: center;
        justify-content: center;
        display: inline-flex;
        height: 20px;
        min-width: 20px;
        background: #fff;
        position: absolute;
    }

    .cartbox img {
        width: 22px;
    }

.dropdown.user-dropdown .btn {
    padding: 0;
    border: none;
    background: transparent;
}

.dropdown.user-dropdown {
    margin-left: 20px;
    position: relative;
    z-index: 9999;
}

    .dropdown.user-dropdown span {
        font-weight: 600;
        font-size: 14px;
    }

.video-container {
    position: relative;
    width: 560px;
    max-width: 100%;
    margin: auto;
   /* cursor: pointer;*/
}

    .video-container img {
        width: 100%;
        border-radius: 10px;
        border: 2px solid #ccc;
        display: block;
    }

    .video-container .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 60px;
        color: white;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 10px;
}
/*check form Update*/



.row.rs-filter-sec {
    transition: all 0.5s;
    z-index: 1111;
}

section#rs-all-products {
    color: #000;
    padding: 200px 0;
}

.rs-cate-list ul {
    padding-left: 0px;
}

    .rs-cate-list ul li {
        list-style: none;
    }

        .rs-cate-list ul li a {
            display: block;
            padding: 10px 0px;
        }

.rs-categories {
    width: 100%;
}

.rs-filter-sec {
    align-items: center;
    display: flex;
    top: 100px;
    transition: all 0.5s;
    z-index: 1111;
}

.rs-filter-sec {
    padding-bottom: 15px;
    border-bottom: 1px solid #Ccc;
}

.products-wrapp {
    scroll-margin-top: 70px;
    padding-left: 20px;
    padding-top: 35px;
}

.rs-cate-list {
    margin-top: 35px;
}

.border-left {
    border-right: 1px solid #ccc;
}

.rsf-btn button, .rsf-btn a {
    justify-content: center;
    align-items: center;
    display: inline-flex;
    height: 30px;
    width: 130px;
    margin-left: 10px;
 /*   border: 1px solid #ccc;*/
    background: none;
}

.rs-filter-buttons {
    justify-content: flex-end;
}

.rs-img img {
    border-radius: 10px;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.rs-cate-head {
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ad2108;
    font-size:x-large;
}

.rs-badge {
    z-index: 9;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    padding: 0px 10px;
    position: absolute;
}

.rs-bestseller {
    background: #11975f;
    top: 35px;
    left: 10px;
}

.rs-spicy {
    padding: 0px 5px;
    border: 1px solid red;
    top: 1px;
    background: #fff;
    color: red;
    right: 1px;
}

.rs-img {
    position: relative;
}

.r-time {
    /* margin: 0px 3%; */
    border-radius: 6px;
    background: #ffffffd6;
    justify-content: start;
    width: 100%;
    bottom: 42px;
    font-size: 12px;
    display: flex;
    position: absolute;
    color: #b4b7b4;
}

.rs-badge.rs-type {
    top: 35px;
    left: 10px;
    background: orange;
}

.rs-product-box {
    position: relative;
}

.rs-content h4 {
    font-weight: 700;
    font-family: 'Raleway' !important;
    padding: 15px 0px;
    font-size: 17px;
}

.rs-content h4 {
    font-weight: 500;
    font-family: 'Raleway' !important;
    padding: 10px 0px;
    font-size: 17px;
    margin-bottom: 0px;
}

span.rs-badge img {
    margin-right: 5px;
    width: 19px;
}

span.rs-badge.rs-ve {
    border: 2px solid #cf8c0b;
    align-content: center;
    bottom: 137px;
    padding: 3px 5px;
    border-radius: 22px;
    color: #cf8c0b;
    right: 10px;
    display: flex;
    background: #fff;
}

span.rs-badge.rs-gu {
    border: 2px solid #72b74c;
    display: flex;
    align-content: center;
    font-weight: 600;
    bottom: 137px;
    padding: 3px 5px;
    border-radius: 22px;
    color: #72b74c;
    left: 10px;
    background: #fff;
}

a.rs-atc {
    border-radius: 5px;
    color: #fff;
    text-align: center;
    /* padding: 10px; */
    padding: 5px;
    display: block;
    width: 100%;
    background: var(--primary-color);
}

.preorder a.rs-atc {
    background: #e7ac07;
}

.rs-img a:hover img {
    width: 120% !important;
}

.rs-img {
    overflow: hidden;
}

span.rs-badge.rs-cate {
    display: inline-block;
    margin-bottom: 5px;
    padding-left: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #525151;
    position: relative;
}

.rs-cate.veg:before {
    border: 1px solid #2ebd59;
}

.rs-cate.veg:after {
    background: #2ebd59;
}

.rs-cate.non-veg:before {
    border: 1px solid red;
}

.rs-cate.non-veg:after {
    background: red;
}

.rs-cate.egg:before {
    border: 1px solid orange;
}

.rs-cate.egg:after {
    background: orange;
}

.rs-cate:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    border-radius: 2px;
    left: 0;
    top: 0px;
}

.rs-cate:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    border-radius: 50%;
    left: 4px;
    top: 4px;
}

.rs-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

span.r-old-price {
    margin-left: 5px;
    font-weight: 400;
    color: #b5adad;
    text-decoration: line-through;
    font-size: 20px;
}

span.r-new-price {
    line-height: 24px;
    font-size: 24px;
}

a.rs-atc.sold {
    cursor: not-allowed;
    background: #e5e5e5;
}

span.r-off {
    margin-left: 13px;
    text-transform: uppercase;
    color: #1ba7d1;
    border-radius: 3px;
    padding: 0px 5px;
    border: 1px solid #1ba7d1;
    font-size: 12px;
}

span.rs-badge.rs-cate img {
    width: 52px;
}

.rs-price {
    margin-bottom: 25px;
}

.rs-content p {
    /*margin-bottom: 10px;*/
    margin-top: 20px;
}

.rsf-btn.rs-price button {
    font-size: 16px !important;
    font-weight: 600;
    border: 1px solid #000;
}

.rsf-btn i {
    margin-right: 3px;
}

.rsf-btn.rs-filter-btn a {
    font-size: 16px !important;
    border-color: 1px solid var(--primary-color) !important;
}

.rs-section-title h1 {
    font-size: 40px;
}

.menu-banner {
    padding-top: 114px;
}

.menu-banner {
    justify-content: center;
    display: flex;
    align-items: center;
    background-position-y: -300px;
    height: 250px;
    background-image: url(../img/hero-bg.jpg);
}

.row.rs-filter-sec {
    font-size: 18px;
}

.rsf-btn.rs-filter-btn a, .rsf-btn.rs-filter-btn a:hover {
    cursor: pointer;
    color: var(--primary-color);
}

.rsf-btn.rs-filter-btn {
    position: relative;
}

div#dfilter {
    display: none;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,.4);
    z-index: 99;
    right: 0;
    background: #fff;
    padding: 12px;
    border: 1px solid #ccc;
    width: 300px;
    top: 45px;
    position: absolute;
}

#dfilter :after {
    bottom: 100%;
    z-index: 1;
    right: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px;
}

button.apply-btn:hover {
}

button.apply-btn {
    margin: 15px 0px 0px 0px;
    font-size: 16px;
    border: none;
    height: 35px;
    color: #fff;
    background: var(--primary-color);
    width: 100%;
}

.sfilter-row h5 {
    letter-spacing: 1px;
    color: #a5a3a3;
    font-weight: 600;
    font-family: 'Raleway' !important;
    font-size: 11px;
    text-transform: uppercase;
}

ul.ssingle li label, ul.smulti li label {
    cursor: pointer;
    font-size: 12px;
    /* border-radius: 100px; */
    padding: 3px 10px;
    border: 1px solid #ccc;
}


ul.ssingle li, ul.smulti li {
    /* cursor: pointer; */
    display: inline-block;
    list-style: none;
}

    ul.ssingle li.active label, ul.smulti li.active label {
        border-color: var(--primary-color);
        color: #fff;
        background: var(--primary-color);
    }

ul.ssingle, ul.smulti {
    padding-left: 0px;
}

.sfilter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 14px;
}

#dfilter .sfilter a {
    height: auto;
    font-weight: 600;
    color: orange;
    padding: 0px !important;
    font-size: 12px !important;
    border: none;
    width: auto;
}
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px #4bb221;
    border: solid 2px #198754;
    margin-top: 5px;
}
.popular-item {
    color: #f03;
}

.btn-heading {
    color: #ad2108;
    text-decoration: none;
    font-size: large;
    font-weight: 550;
}

/* Base: stacked (image top, text below) */
.news-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    background: transparent; /* or your card bg */
}

    /* Make image full width on desktop */
    .news-box .news-image-wrapper,
    .news-box .news-text-wrapper {
        width: 100%;
        color: #0d6efd;
        font-size: smaller;
    }

    .news-box .news-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 8px;
    }

/* Mobile: image left, text right */
@media (max-width: 768px) {
    .news-box {
        flex-direction: row;
        align-items: center;
    }

        /* image 38%-42% and text 58%-62% — adjust if you want larger/smaller image */
        .news-box .news-image-wrapper {
            width: 30%;
            flex: 0 0 30%;
        }

        .news-box .news-text-wrapper {
            width: 70%;
            flex: 1 1 70%;
            padding-left: 0.6rem;
        }

        .news-box .news-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .news-box .news-heading {
            font-size: 0.95rem; /* slightly smaller on mobile */
            line-height: 1.2;
            margin: 0;
        }
}

/* very small phones — tighten spacing */
@media (max-width: 400px) {
    .news-box .news-image-wrapper {
        width: 45%;
        flex: 0 0 45%;
    }

    .news-box .news-text-wrapper {
        width: 55%;
    }
}

/* optional: ensure anchor doesn't collapse layout */
.news-box a {
    color: inherit;
    text-decoration: none;
}
.share-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

    .share-buttons a {
        font-size: 20px;
        text-decoration: none;
        color: #555;
        transition: all 0.2s ease-in-out;
    }

        .share-buttons a:hover {
            transform: scale(1.2);
        }

        .share-buttons a i.fa-twitter {
            color: #1DA1F2;
        }

        .share-buttons a i.fa-facebook-f {
            color: #1877F2;
        }

        .share-buttons a i.fa-whatsapp {
            color: #25D366;
        }

        .share-buttons a i.fa-linkedin-in {
            color: #0077B5;
        }
