/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
/* Fonts */
:root {
    --font-default: "Open Sans", system-ui, -apple-system, sans-serif;
    --font-primary: "Source Sans 3", sans-serif;
    --font-secondary: "Rubik", sans-serif;
}

/* Colors */
:root {
    --color-default: #000000;
    --color-primary: #F86767;
    --color-secondary: #F2ABAC;
    --color-tertiary: #f9f4ee;
    --color-quaternary: #14140D;
}

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

html {
    scroll-padding-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
}

p {
    font-family: var(--font-primary);
}

.scroll-to-top-btn {
    display: none;
    background-color: var(--color-tertiary);
    color: var(--color-primary);
    z-index: 1000;
    border-radius: 100%;
    border-color: none;
    border-width: none;
    font-size: 50px;
    position: fixed;
    cursor: pointer;
    bottom: 5%;
    right: 5%;
}

.scroll-to-top-btn:hover {
    /* display: none; */
    transform: scale(1.1);
    transition: 0.5s;
}

/* --------------------------------------------------------------
# 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: 50%;
    -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;
    }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    overflow: hidden;
    padding: 100px 0;
}

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

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

.section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #7f7f90;
    text-transform: uppercase;
    font-family: var(--font-default);
}

.section-header p {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-primary);
}

.section-header p span {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-quaternary);
}

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

li {
    text-decoration: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background-color: transparent;
    height: 80px;
    z-index: 997;
    transition: background-color 1s ease;
}

.header.scrolled {
    background-color: rgba(34, 34, 34, 0.8);
}

/* #header .header-transparent {
    background: transparent;
} */

/* #header .header-scrolled {
    top: 0;
    background: #fff;
} */


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

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

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

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
    background: none;
    border-style: solid;
    border-width: 3px;
    border-color: var(--color-primary);
    padding: 5px 10px;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
}

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

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

@media (max-width: 575px) {
    .header .logo img {
        max-height: 80px;
        margin-right: 6px;
    }
}

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

    .header .btn-book-a-table {
        padding: 12px 15px;
    }
}

@media (max-width: 300px) {

    .header .btn-book-a-table,
    .header .btn-book-a-table:focus {
        font-size: 10px;
        border-radius: 30px;
        padding: 10px;
    }
}

/*--------------------------------------------------------------
# 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: var(--font-primary);
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-decoration: none;
    }

    .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,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: var(--color-primary);
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        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;
        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;
    }
}

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

    .orders a,
    .orders button {
        margin: 5px auto !important;
        display: block;
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        padding: 0;
        top: 0;
        right: 200%;
        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: #fff;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        height: 100vh;
        width: 100vw;
        text-decoration: none;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 600;
        color: #000;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: none;
    }

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

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

    .navbar .active,
    .navbar .active:focus {
        color: var(--color-primary);
        border-color: var(--color-primary);
    }

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

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

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

    .mobile-nav-hide {
        color: var(--color-quaternary);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        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;
    }

    .nav {
        display: list-item !important;
        margin-left: 5px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    background-position: center;
    position: relative;
    min-height: 100vh;
    padding: 160px 0 60px 0;
    background-image: url('../img/Banner/banner-2.jpg');
    background-color: #000;
    z-index: 1;
}

.hero h2 {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
    font-family: "permanent-marker";
    /* background: url('https://s2.svgbox.net/pen-brushes.svg?ic=brush-4&color=F2ABAC'); */
}

.hero h2 span {
    color: black;
}

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

.hero .btn-book-a-table {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    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: rgba(206, 18, 18, 0.8);
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);
}

.hero .btn-watch-video {
    font-size: 25px;
    transition: 0.5s;
    margin-left: 25px;
    color: white;
    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: rgba(206, 18, 18, 0.8);
}

.hero .btn-order-now,
.hero .btn-order-now:focus {
    background: none;
    border-style: solid;
    border-width: 3px;
    border-color: var(--color-primary);
    padding: 5px 10px;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    z-index: 10000;
}

.hero .btn-order-now:hover,
.hero .btn-order-now:focus:hover {
    color: #fff;
    background: var(--color-primary);
}

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

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background-color: rgb(22, 22, 22);
    padding: 50px 0;
    color: #fff;
}

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

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

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

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

.footer .footer-links a {
    color: #fff;
    font-weight: 500;
}

.footer .footer-links a:hover {
    color: var(--color-primary);
    font-weight: 500;
    transition: all 0.3s ease-in-out 0s;
}


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

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

.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 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

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

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

.footer .author a {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
.home {
    height: auto;
    background-color: var(--color-tertiary);
}

.home .home-img {
    min-height: 500px;
    width: 760px;
}

.home h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-default);
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-default);
}

.home .home-text {
    padding-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

.home .home-text-left {
    padding-bottom: 20px;
    text-align: left;
    font-size: 20px;
}

.home .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;
}

.home .call-us h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-default);
}

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

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

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

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

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

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

.home .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: 50%;
    border: 5px solid rgba(206, 18, 18, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

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

.home .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;
}

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

.home h1 {
    font-weight: 700;
    color: var(--color-default);
    margin-bottom: 30px;
    font-family: var(--font-default);
}

.home .cont-1 .p-cont-1 {
    height: fit-content;
}

.home .cont-1 .img-cont-1 {
    background-color: #595959;
}

.home .img-container .img-1 {
    height: 400px;
    width: 100%;
    border-radius: 10px;
}

.home .home-text ul {
    text-align: left;
}

@-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;
    }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu {
    background-color: var(--color-tertiary);
}

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

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

.menu .nav-link h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    font-family: var(--font-secondary);
}

.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: 20px 0;
}

.menu #starters {
    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;
    font-family: var(--font-secondary);
    color: var(--color-primary);
    text-transform: uppercase;
}

.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: 600;
    color: var(--color-quaternary);
    font-family: var(--font-primary);
    font-weight: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

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

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

.quantity {
    font-weight: 200;
    text-transform: lowercase;
}

select {
    position: absolute;
    font-family: var(--font-secondary) !important;
    font-weight: 700;
    color: var(--color-quaternary) !important;
    border-width: 2px;
    padding: .5rem 2rem .5rem .75rem;
    left: 43.6%;
    top: 30.5%;
}

.select-container {
    position: relative;
    height: 100px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50.5vw;
    margin-right: -50vw;
    z-index: 100;
}

.select-container-active {
    background-color: rgba(34, 34, 34, 0.3);
}

.menu .btn-menu {
    background: #fff;
    border-style: solid;
    border-width: 3px;
    border-color: var(--color-primary);
    padding: 12px 40px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    width: auto;
    text-decoration: none;
}

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

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

.menu .btn-menu:hover a {
    color: #fff;
}

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

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

    .menu .nav-link h4 {
        font-size: 16px;
    }

    .menu .btn-menu {
        padding: 12px 20px;
        width: 90%;
    }

}

/*--------------------------------------------------------------
# Order Section
--------------------------------------------------------------*/
.order {
    background-color: var(--color-tertiary);
}

.order .btn-order {
    background: #fff;
    border-style: solid;
    border-width: 3px;
    border-color: var(--color-primary);
    padding: 12px 40px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    width: 200px;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-color: var(--color-tertiary);
}

.contact .info-item {
    background: var(--color-tertiary);
    padding: 30px;
    height: 100%;
    border: 2px solid;
}

.contact .info-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: var(--color-primary);
    margin-right: 15px;
}

.contact .info-item h3 {
    font-size: 20px;
    color: var(--color-quaternary);
    font-weight: 700;
    margin: 0 0 5px 0;
}

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

.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: none;
    /* 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: 50%;
    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 {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: none;
    border-color: var(--color-quaternary);
    border-width: 0px 0px 2px 0px;
}

.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: none;
    border-color: var(--color-quaternary);
    border-width: 2px 2px 2px 2px;
}

.contact .php-email-form input:focus {
    border-color: var(--color-quaternary);
    background-color: #fff;
}

.contact .php-email-form textarea:focus {
    border-color: var(--color-quaternary);
    background-color: #fff;

}

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

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

.contact .php-email-form button[type=submit] {
    background: #fff;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color-primary);
    padding: 12px 40px;
    color: var(--color-primary);
    transition: 0.4s;
}


.contact .php-email-form button[type=submit]:hover {
    background: var(--color-primary);
    color: #fff;
}

.contact .section-text {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 22px;
}

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

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

/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/
.booking {
    background-color: var(--color-tertiary);
    height: auto;
}

.booking .info-item {
    background: #f4f4f4;
    padding: 30px;
    height: 100%;
}

.booking .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: 50%;
    margin-right: 15px;
}

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

.booking .info-item p {
    padding: 0;
    margin: 0;
    line-height: 24px;
    font-size: 14px;
}

.booking .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;
}

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

.booking .php-email-form {
    width: 100%;
    margin-top: 30px;
    background: none;
    /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.08); */
}

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

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

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

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

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

.booking .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    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;
}

.booking .php-email-form input {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: none;
    border-color: var(--color-quaternary);
    border-width: 0px 0px 2px 0px;
}

.booking .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: none;
    border-color: var(--color-quaternary);
    border-width: 2px 2px 2px 2px;
}

.booking .php-email-form input:focus {
    border-color: var(--color-quaternary);
    background-color: #fff;
}

.booking .php-email-form textarea:focus {
    border-color: var(--color-quaternary);
    background-color: #fff;

}

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

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

.booking .php-email-form button[type=submit] {
    background: #fff;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color-primary);
    padding: 12px 40px;
    color: var(--color-primary);
    transition: 0.4s;
}


.booking .php-email-form button[type=submit]:hover {
    background: var(--color-primary);
    color: #fff;
}

.booking .section-text {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 22px;
}

.booking .menu .btn-menu {
    width: 250px;
}

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

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

/*--------------------------------------------------------------
# Locations Section
--------------------------------------------------------------*/
.locations {
    background-color: var(--color-tertiary);
}

.locations h5 {
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-size: 22px;
}

.locations .address {
    font-family: var(--font-primary);
    font-size: 22px;
}

.locations .card {
    padding-bottom: 20px;
}

.locations .btn-locations {
    background: none;
    border-style: solid;
    border-width: 3px;
    border-color: var(--color-primary);
    padding: 12px 40px;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    font-size: 16px;
    text-decoration: none;
    text-decoration-color: #000;
}

.locations .btn-locations a{
    background: none;
    border-style: solid;
    border-width: 3px;
    border-color: var(--color-primary);
    padding: 12px 40px;
    color: inherit;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    font-size: 16px;
    text-decoration: none;
}

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

.locations .card img {
    height: 300px;
    width: 100%;
  }



/*--------------------------------------------------------------
# Newlstter Section
--------------------------------------------------------------*/
.newsletter {
    background-color: #000;
}

.newsletter .info-item {
    background: #f4f4f4;
    padding: 30px;
    height: 100%;
}

.newsletter .section-header>p>span {
    color: var(--color-tertiary);
}

.newsletter .section-text>p {
    color: var(--color-tertiary);
}

.newsletter .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: 50%;
    margin-right: 15px;
}

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

.newsletter .info-item p {
    padding: 0;
    margin: 0;
    line-height: 24px;
    font-size: 14px;
}

.newsletter .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;
}

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

.newsletter .php-email-form {
    width: 100%;
    margin-top: 30px;
    background: none;
}

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

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

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

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

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

.newsletter .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    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;
}

.newsletter .php-email-form input {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-color: var(--color-tertiary);
    border-width: 0px 0px 2px 0px;
    background: none;
    height: 48px;
    color: #fff;
}

.newsletter .php-email-form input::placeholder {
    color: #fff;
}



.newsletter .php-email-form input:focus {
    border-color: var(--color-tertiary);
    background-color: #666;
    color: #fff;
}

.newsletter .php-email-form button[type=submit] {
    background: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color-primary);
    padding: 12px 40px;
    color: var(--color-primary);
    transition: 0.4s;
}


.newsletter .php-email-form button[type=submit]:hover {
    background: var(--color-primary);
    color: #fff;
}

.newsletter .section-text {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 22px;
}

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

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

form .field-err-msg {
    color: #d05454;
    padding-top: 5px;
    margin-bottom: 0rem;
}

.book-a-table.error-message {
    color: #d05454;
    /* background: #df1529; */
    text-align: left;
    padding: 2rem !important;
    margin-bottom: 24px;
    font-weight: 600;
}

.react-datepicker-wrapper {
    width: 100%;
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before,
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after,
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
    left: -15px !important;
}

.section-header .booking-msg-success {
    padding-top: 30px;
    position: relative;
    font-style: italic;
}

.section-header .booking-msg-success span {
    color: #ff6766;
}

.section-header .booking-msg-success::before {
    position: absolute;
    border: 2px solid;
    content: '';
    color: #ff6766;
    bottom: -15px;
    width: 250px;
    left: 36%;
}


#newsletter .booking-msg-success p {
    color: #f9f4ee;
}

#newsletter .book-a-table.error-message {
    color: #d05454;
    text-align: left;
    padding: 0rem 2rem !important;
    background: none;
    font-weight: 600;
}

#contact .section-header .booking-msg-success::before {
    content: unset !important;
}

#contact .btn-send-msg img {
    width: 30px;
}

.menu .tab-content .menu-item a {
    background: #f86768;
    color: white;
    padding: 10px 10px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
}

.menu .tab-content .menu-item a:hover {
    background: white;
    color: #f86768;
    padding: 10px 10px;
    cursor: pointer;
    border: 3px solid #f86768;
}

.menu .tab-content .menu-item a.added {
    background: white;
    color: #28a745;
    padding: 10px 10px;
    cursor: pointer;
    border: 3px solid #28a745;
}


.menu .tab-content .menu-item a span {
    margin-left: 10px;
}

.orders .quantity select {
    position: relative;
    left: 0px;
}

.orders .quantity span {
    text-transform: capitalize;
    font-weight: 500;
}

.orders .order-item {
    margin-bottom: 40px;
}

.orders .no-order-item {
    text-align: center;
}

.orders .no-order-item p {
    font-size: 20px;
}

.orders .order-item .price {
    font-size: 25px;
    font-weight: 600;
}

.orders .form-btm {
    text-align: center;
}

.orders a,
.orders button.submit {
    font-family: var(--font-secondary);
    border: 3px solid;
    padding: 10px 30px !important;
    margin: 0px 5px;
    width: 200px;
    max-width: 100%;
    border-radius: 3px;
}

.orders a {
    text-decoration: none !important;
    color: #000000;
    border-color: var(--color-primary) !important;
}

.orders button.submit {
    background: var(--color-primary) !important;
    color: white;
}

.orders .price-div {
    text-align: center;
}

.checkout .msg-content {
    margin-top: 150px;
    text-align: center;
}

.checkout .msg-content .check-icon {
    font-size: 100px;
    color: #ff6766;
}

.checkout .msg-content p {
    font-size: 20px;
    color: #595959;
    margin: 20px 0px 40px 0px;
}

.checkout .msg-content a {
    background: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color-primary);
    padding: 12px 40px;
    color: var(--color-primary);
    transition: 0.4s;
}

.checkout .pickdatetime {
    margin-bottom: 50px;
}

.checkout .pickdatetime h4 {
    text-align: center;
    margin-bottom: 20px;
}

.checkout .trashcan {
    text-transform: capitalize;
    cursor: pointer;
    height: fit-content;
    width: fit-content;
    border-style: none;
    text-decoration: none !important;
    display: inline-block;
    padding: 0px 0px 0px 10px !important;
    margin: 0px;
}

.checkout .trashcan:hover {
    transition-duration: 0.5s;
    color: red;
}

.checkout .trashcan {
    font-weight: 100;
}

.orders .hide-page {
    display: none;
}

.orders .form-label {
    font-weight: 600;
}