
/* Colors */
:root {
    --color-default: #212529;
    --color-primary: #c9bb5a;
    --color-secondary: #404040;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

@font-face {
    font-family: myFirstFont;
    src: url('../fonts/ArbFONTS-Cairo-Regular-1.ttf');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: myFirstFont;
    color: var(--color-default);
}

.site-btn2 {
    background: #4CAF50;
    display: block;
    width: 100%;
    padding: 8px 30px 10px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    margin: 15px 0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: myFirstFont;
}
img{
    max-width: 100%;
  }
  
@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
    }
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    overflow: hidden;
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

    .section-header h3::before, .section-header h3::after {
        content: "";
        width: 50px;
        height: 2px;
        background: #c9bb5a;
        display: inline-block;
    }

    .section-header h3::after {
        margin: 0 15px 10px 0;
    }

    .section-header h3::before {
        margin: 0 0 10px 15px;
    }

    .section-header h2,
    .section-header h3,
    .section-header h4,
    .section-header h5 {
        font-weight: 400;
        margin: 0;
        padding: 0;
        color: #404040;
        font-size: 36px;
        font-weight: 400;
        font-family: myFirstFont;
    }

        .section-header h2 span {
            color: var(--color-primary);
        }

    .section-header span {
        position: absolute;
        top: 25px;
        color: rgba(14, 29, 52, 0.06);
        left: 0;
        right: 0;
        z-index: 1;
        font-weight: 700;
        font-size: 56px;
        text-transform: uppercase;
        line-height: 0;
    }

.look-for .section-header h2,
.look-for .section-header h3 {
    color: #fff;
}

.look-for .section-header span {
    color: rgba(255, 255, 255, 0.06);
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: rgba(55, 55, 63, 0.05);
    margin-top: 90px;
}

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

.breadcrumbs h1 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

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

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

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


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

    .breadcrumbs h1 {
        margin-bottom: 10px;
    }

    .breadcrumbs ol {
        display: block;
    }

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

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 44px;
    height: 44px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .scroll-top:hover {
        background: #404040;
        color: #fff;
    }

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

    #preloader:before,
    #preloader:after {
        content: "";
        position: absolute;
        border: 4px solid var(--color-primary);
        border-radius: 100%;
        -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

    #preloader:after {
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

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

    .d-sm {
        display: none;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 35px;
    /* border-top: 1px solid #474747; */
}


    .header.sticked {
        border-color: #5e5e5e;
        margin-top: 0;
    }

    .header .logo img {
        max-height: 85px;
        margin-right: 6px;
    }

    .header .logo h1 {
        font-size: 28px;
        font-weight: 700;
        color: #000;
        margin: 0;
        font-family: myFirstFont;
    }

        .header .logo h1 span {
            color: var(--color-primary);
        }

    .header .btn-book-a-table,
    .header .btn-book-a-table:focus,
    .why-box a {
        font-size: 14px;
        color: #fff;
        background: var(--color-primary);
        padding: 8px 20px;
        margin-right: 30px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        transition: 0.3s;
    }

        .header .btn-book-a-table:hover,
        .header .btn-book-a-table:focus:hover {
            color: #fff;
            background: #404040;
        }

/* section {
  scroll-margin-top: 90px;
} */

@media (max-width: 575px) {
    .header {
        height: 70px;
    }

        .header .logo img {
            max-height: 65px;
        }
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

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

        .navbar li {
            position: relative;
        }

        .navbar > ul > li {
            white-space: nowrap;
            padding: 10px 0 10px 28px;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3px;
            font-family: myFirstFont;
            font-size: 16px;
            font-weight: 600;
            color: #404040;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

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

        .navbar > ul > li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--color-primary);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navbar a:hover:before,
        .navbar li:hover > a:before,
        .navbar .active:before {
            visibility: visible;
            width: 100%;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #c9bb5a;
        }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            right: 0;
            top: calc(100% + 30px);
            margin: 0;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #fff;
            transition: 0.3s;
            border-radius: 4px;
        }

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

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                font-weight: 600;
            }

                .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(--color-primary);
                }

        .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 (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

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

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        border-left: 1px solid #666;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: #404040;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-family: myFirstFont;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
            transition: 0.3s;
        }

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

            .navbar a:hover,
            .navbar li:hover > a {
                color: #fff;
            }

        .navbar .active,
        .navbar .active:focus {
            color: #fff;
        }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            transition: all 0.5s ease-in-out;
        }

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

    .mobile-nav-show {
        color: #404040;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin: 0 10px 0 20px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        left: 150px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .navbar {
            right: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(255, 255, 255, 0.8);
                z-index: 9996;
            }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
    min-height: 500px;
}

.about h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 30px;
    font-family: myFirstFont;
}

.about .call-us {
    left: 10%;
    right: 10%;
    bottom: 10%;
    background-color: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
}

    .about .call-us h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
        font-family: myFirstFont;
    }

    .about .call-us p {
        font-size: 28px;
        font-weight: 700;
        color: var(--color-primary);
    }

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

    .about .content ul li {
        padding: 0 0 8px 26px;
        position: relative;
    }

    .about .content ul i {
        position: absolute;
        font-size: 20px;
        left: 0;
        top: -3px;
        color: var(--color-primary);
    }

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

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
    border-radius: 100%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

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

    .about .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);
    }

    .about .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;
        -webkit-animation: none;
        animation: none;
        border-radius: 0;
    }

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

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

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

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

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
    color: #fff;
}

    .why-us .why-box h3 {
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }

    .why-us .why-box p {
        margin-bottom: 30px;
    }

    .why-us .why-box .more-btn {
        display: inline-block;
        background: rgba(255, 255, 255, 0.3);
        padding: 6px 30px 8px 30px;
        color: #fff;
        transition: all ease-in-out 0.4s;
    }

        .why-us .why-box .more-btn i {
            font-size: 14px;
        }

        .why-us .why-box .more-btn:hover {
            color: var(--color-primary);
            background: #fff;
        }

.why-us .icon-box {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(55, 55, 63, 0.1);
    transition: 0.3s;
}

    .why-us .icon-box i {
        color: var(--color-primary);
        margin-bottom: 30px;
        font-size: 32px;
        margin-bottom: 30px;
        background: rgba(206, 18, 18, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
    }

    .why-us .icon-box h4 {
        font-size: 20px;
        font-weight: 400;
        margin: 0 0 30px 0;
        font-family: myFirstFont;
    }

    .why-us .icon-box p {
        font-size: 15px;
        color: #6c757d;
    }

@media (min-width: 1200px) {
    .why-us .icon-box:hover {
        transform: scale(1.1);
    }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
    background: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.77)), url("../img/slider/hero-2.jpg") center center;
    background-size: cover;
    padding: 100px 0;
}

@media (min-width: 1365px) {
    .stats-counter {
        background-attachment: fixed;
    }
}

.stats-counter .stats-item {
    padding: 30px;
    width: 100%;
}

    .stats-counter .stats-item span {
        font-size: 48px;
        display: block;
        color: #fff;
        font-weight: 700;
    }

    .stats-counter .stats-item p {
        padding: 0;
        margin: 0;
        font-family: myFirstFont;
        font-size: 16px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.6);
    }

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
    border: 0;
}

.menu .nav-link {
    margin: 0 10px;
    padding: 10px 5px;
    transition: 0.3s;
    color: var(--color-secondary);
    border-radius: 0;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
    .menu .nav-link {
        margin: 0 10px;
        padding: 10px 0;
    }
}

.menu .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.menu .nav-link h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    font-family: myFirstFont;
}

@media (max-width: 575px) {
    .menu .nav-link h4 {
        font-size: 16px;
    }
}

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

.menu .nav-link.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
    padding: 30px 0;
}

    .menu .tab-content .tab-header p {
        font-size: 14px;
        text-transform: uppercase;
        color: #676775;
        margin-bottom: 0;
    }

    .menu .tab-content .tab-header h3 {
        font-size: 36px;
        font-weight: 600;
        color: var(--color-primary);
    }

.menu .tab-content .menu-item {
    -moz-text-align-last: center;
    text-align-last: center;
}

    .menu .tab-content .menu-item .menu-img {
        padding: 0 60px;
        margin-bottom: 15px;
    }

    .menu .tab-content .menu-item h4 {
        font-size: 22px;
        font-weight: 500;
        color: var(--color-secondary);
        font-family: myFirstFont;
        font-weight: 30px;
        margin-bottom: 5px;
    }

    .menu .tab-content .menu-item .ingredients {
        font-family: myFirstFont;
        color: #8d8d9b;
        margin-bottom: 5px;
    }

    .menu .tab-content .menu-item .price {
        font-size: 24px;
        font-weight: 700;
        color: var(--color-primary);
    }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
    margin-bottom: 40px;
}

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

.testimonials .testimonial-item .testimonial-content {
    border-left: 3px solid var(--color-primary);
    padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
    border-radius: 100%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--color-default);
    font-family: myFirstFont;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 10px 0;
    font-family: myFirstFont;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #f05656;
    font-size: 26px;
    line-height: 0;
}

.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;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
}

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

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #d1d1d7;
        opacity: 1;
    }

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

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
    padding: 0;
}

.events .event-item {
    background-size: cover;
    background-position: center;
}

    /* .events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
  border-radius: 10px;
} */
    .events .event-item img {
        border-radius: 10px;
        max-width: 100%;
    }

    .events .event-item h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
        position: absolute;
        top: 48%;
        left: 0;
        right: 0;
        text-align: center;
    }

    .events .event-item .price {
        color: #fff;
        border-bottom: 2px solid var(--color-primary);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
    }

    .events .event-item .description {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.9);
        position: relative;
    }

@media (min-width: 1200px) {
    .events .swiper-slide-active + .swiper-slide {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
}

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

    .events .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #d1d1d7;
        opacity: 1;
    }

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

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
    overflow: hidden;
    text-align: center;
    border-radius: 0;
    background: #fff;
    transition: 0.4s;
}

    .chefs .chef-member .member-img {
        position: relative;
        overflow: hidden;
    }

        .chefs .chef-member .member-img img {
            border-radius: 10px;
        }

    .chefs .chef-member .social {
        position: absolute;
        right: -100%;
        top: 30px;
        opacity: 0;
        border-radius: 4px;
        transition: 0.5s;
        background: rgba(255, 255, 255, 0.3);
        z-index: 2;
    }

        .chefs .chef-member .social a {
            transition: color 0.3s;
            color: rgba(55, 55, 63, 0.4);
            margin: 15px 12px;
            display: block;
            line-height: 0;
            text-align: center;
        }

            .chefs .chef-member .social a:hover {
                color: rgba(55, 55, 63, 0.9);
            }

        .chefs .chef-member .social i {
            font-size: 18px;
        }

    /* .chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
} */

    .chefs .chef-member .member-info h4,
    .chefs .chef-member .member-info h2 {
        font-weight: 700;
        margin: 15px 0;
        font-size: 20px;
        color: var(--color-secondary);
    }

    .chefs .chef-member .member-info span {
        display: block;
        width: 100%;
        padding-bottom: 10px;
        color: #3c3c3c;
        font-size: 14px;
    }

        .chefs .chef-member .member-info span i {
            padding-right: 5px;
        }

    .chefs .chef-member .member-info p {
        font-style: italic;
        font-size: 14px;
        padding-top: 15px;
        line-height: 26px;
        color: rgba(33, 37, 41, 0.7);
    }

    .chefs .chef-member:hover {
        transform: scale(1.08);
        /* box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15); */
    }

        .chefs .chef-member:hover .social {
            right: 8px;
            opacity: 1;
        }

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.book-a-table .reservation-form-bg {
    background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
    padding: 0 40px;
    width: 100%;
}

@media (max-width: 575px) {
    .book-a-table .php-email-form {
        padding: 20px;
    }
}

.book-a-table .php-email-form h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

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

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

.book-a-table .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

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

.book-a-table .php-email-form input,
.book-a-table .php-email-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

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

.book-a-table .php-email-form input {
    padding: 12px 15px;
}

.book-a-table .php-email-form select {
    padding: 12px 15px;
}

.book-a-table .php-email-form button,
.book-a-table a.a-more {
    background: var(--color-primary);
    border: 0;
    padding: 14px 60px;
    color: #fff;
    transition: 0.4s;
    width: 100%;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    display: block;
    text-align: center;
}

    .book-a-table .php-email-form button:hover,
    .book-a-table a.a-more:hover {
        background: #404040;
    }

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

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

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

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
    overflow: hidden;
}

    .gallery .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .gallery .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #d1d1d7;
            opacity: 1;
        }

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

    .gallery .swiper-slide-active {
        text-align: center;
    }

@media (min-width: 992px) {
    .gallery .swiper-wrapper {
        padding: 40px 0;
    }

    .gallery .swiper-slide-active {
        border: 6px solid var(--color-primary);
        padding: 4px;
        background: #fff;
        z-index: 1;
        transform: scale(1.2);
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background: transparent;
    padding: 30px;
    height: 100%;
}

    .contact .info-item .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        font-size: 24px;
        line-height: 0;
        color: #fff;
        background: var(--color-primary);
        border-radius: 100%;
        margin-left: 15px;
    }

    .contact .info-item h3 {
        font-size: 20px;
        color: #404040;
        font-weight: 700;
        margin: 0 0 5px 0;
    }

    .contact .info-item p {
        padding: 0;
        margin: 0;
        line-height: 24px;
        font-size: 14px;
        color: #5d6062;
    }

        .contact .info-item p a {
            color: #5d6062;
        }

    .contact .info-item .social-links a {
        font-size: 24px;
        display: inline-block;
        color: rgba(55, 55, 63, 0.7);
        line-height: 1;
        margin: 4px 6px 0 0;
        transition: 0.3s;
    }

        .contact .info-item .social-links a:hover {
            color: var(--color-primary);
        }

.contact .php-email-form {
    width: 100%;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 100%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #059652;
            border-top-color: #fff;
            -webkit-animation: animate-loading 1s linear infinite;
            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;
    }

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

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

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

    .contact .php-email-form button[type=submit] {
        background: var(--color-primary);
        border: 0;
        padding: 12px 40px;
        color: #fff;
        transition: 0.4s;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #404040;
        }

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

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

.contact .info-container {
    background-color: #404040;
    height: 100%;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
    width: 100%;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    color: #fff;
}

    .contact .info-item:last-child {
        margin-bottom: 0;
    }

    .contact .info-item i {
        font-size: 20px;
        color: #fff;
        float: left;
        width: 44px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
        margin: 0 15px;
    }

    .contact .info-item h4 {
        padding: 0;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #fff;
    }

    .contact .info-item p {
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
    }

    .contact .info-item:hover i {
        background: #fff;
        color: var(--color-primary);
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    padding-bottom: 0;
}

    .hero h2 {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--color-secondary);
        font-family: myFirstFont;
    }

        .hero h2 span {
            color: var(--color-primary);
        }

    .hero p {
        color: #4f4f5a;
        font-weight: 400;
        margin-bottom: 30px;
    }

    .hero .btn-book-a-table {
        font-weight: 500;
        font-size: 30px;
        display: inline-block;
        padding: 12px 36px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        transition: 0.5s;
        color: #fff;
        background: var(--color-primary);
        box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
    }

        .hero .btn-book-a-table:hover {
            background: #404040;
            box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);
        }

    .hero .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: myFirstFont;
        font-weight: 600;
    }

        .hero .btn-watch-video i {
            color: var(--color-primary);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .hero .btn-watch-video:hover {
            color: var(--color-primary);
        }

            .hero .btn-watch-video:hover i {
                color: #404040;
            }

@media (max-width: 640px) {
    .hero h2 {
        font-size: 22px;
    }

    .hero .btn-book-a-table {
        padding: 10px 15px;
    }

    .hero .item-caption {
        height: auto;
        min-height: auto;
    }

        .hero .item-caption span {
            font-size: 14px;
        }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background-color: #404040;
    padding: 50px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

    .footer .icon {
        margin-right: 15px;
        font-size: 24px;
        line-height: 0;
    }

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 15px;
        color: #fff;
    }

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

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

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


            .footer .footer-links ul a {
                color: rgba(255, 255, 255, 0.6);
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: #fff;
                }

    .footer .social-links li {
        display: inline-block !important;
    }

    .footer .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        margin-left: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: #fff;
            border-color: #fff;
        }

        .footer .social-links a i {
            line-height: 40px;
        }

    .footer .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .credits {
        padding-top: 4px;
        text-align: center;
        font-size: 13px;
    }

        .footer .credits a {
            color: #fff;
        }

.dir {
    direction: ltr;
}

.about .content {
    background-color: #f6f9ff;
    padding: 40px;
}

.book-a-table .php-email-form select.form-control:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.btn-more {
    background: #c9bb5a;
    border: 0;
    padding: 12px 40px;
    color: #fff;
    transition: 0.4s;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

    .btn-more:hover {
        background: #404040;
        color: #fff;
    }

.footer ul.links {
    padding-left: 15px;
    list-style: none;
}

    .footer ul.links li {
        width: 100%;
    }

        .footer ul.links li a {
            padding-bottom: 5px;
            color: #fff;
            width: 100%;
            display: block;
        }

.footer ul.no-list {
    list-style-type: none;
    padding-right: 0 !important;
}

.footer ul.links li i {
    padding-right: 5px;
}

.item-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-item .item-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item .item-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
    color: #fff;
}

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

.header-t {
    padding: 5px 0 8px;
    background: #404040;
    color: #fff;
}

    .header-t a {
        color: #fff;
    }

        .header-t a i {
            padding-left: 5px;
            color: #c9bb5a;
        }

    .header-t .text-left {
        text-align: left;
    }

.price {
    background: #e2e2e2;
    padding: 20px 10px;
}

.search-s {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    background: var(--color-primary);
    padding: 13px 30px;
    font-weight: 600;
    border-radius: 4px;
    text-align: right;
}

.nameproject {
    font-weight: bold !important;
    font-size: 30px !important;
}

.call {
    position: absolute;
    z-index: 99999;
    width: 100%;
}

.call-img img {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 45px;
}

.whatsapp-img img {
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 45px;
}

.call-img2 img {
    bottom: 155px;
    position: fixed;
    right: 40px;
    width: 45px;
}

.look-for {
    background: #404040;
    padding: 120px 0 30px;
}

.post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 22px;
    padding: 5px 20px;
    background: #fff;
}

    .post-date small {
        font-size: 10px;
        display: block;
    }

.location-sign {
    text-align: center;
}

    .location-sign i {
        font-size: 60px;
        border: 1px solid #404040;
        border-radius: 50%;
        background: #404040;
        width: 120px;
        height: 120px;
        line-height: 120px;
    }

    .location-sign h4 {
        margin-top: 25px;
        font-weight: bold;
        color: #404040;
        font-size: 24px;
    }

    .location-sign a {
        display: block;
        width: 100%;
    }

    .location-sign img {
        border: 7px solid #404040;
        border-radius: 50%;
        max-width: 70%;
    }

.search-in.book-a-table {
    background: #404040;
    padding: 30px 0;
}

.search-in span.search-title {
    color: #fff;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 20px;
    font-size: 24px;
}

.company-logo {
    text-align: center;
    padding-bottom: 40px;
}

.bg-img {
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/bg-img.jpg");
}

.callus {
    position: fixed;
    bottom: 0;
    /* width: 300px; */
    width: 500px;
    text-align: center;
    margin: 0 auto;
    right: 50px;
    padding: 0 5px;
    color: #fff;
    z-index: 9999;
    font-size: 22px;
}

    .callus .row.no-gutters .col-3 {
        padding-left: 2px;
        padding-right: 2px;
    }

    .callus a {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .callus .whatsapp {
        background: green;
    }

    .callus .calling {
        background: red;
    }

    .callus .message {
        background: black;
    }

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

    .breadcrumbs {
        margin-top: 65px;
    }

    .header-t a,
    .header-t .text-left {
        text-align: center;
        width: 100%;
        display: block;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
    }

    .testimonial-item .item-caption {
        height: auto;
        min-height: auto;
    }

    .section-header h2,
    .section-header h3 {
        font-size: 30px;
    }

    .section-header span {
        font-size: 40px;
    }

    .callus {
        width: 100%;
        font-size: 24px;
        right: 0;
        left: 0;
        background: #fff;
    }
}

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

.padding-b {
    padding-bottom: 0 !important;
}

button:disabled {
    opacity: .65;
}
