﻿:root {
    --bs-font-sans-serif: 'Poppins', sans-serif;
    --bs-font-montserrat: "Montserrat", serif;
    --bs-font-fuzzy-bubbles: "Fuzzy Bubbles", serif;
    --bs-font-great-vibes: "Great Vibes", serif;
    --dull-black: #101013;
    --text-color: #808080;
    --black: #000;
    --gold: #c49b63;
    --info: #0075ba;
    --warning: #f9aa0b;
    --white: #fff;
    --text-dark: #212529;
    --google: #ea4335;
    --facebook: #1877f2;
    --twitter: #1da1f2;
    --youtube: #ff0000;
    --linkedin: #0077b5;
    --pinterest: #e60023;
    --instagram: #e1306c;
    --yelp: #af0606;
    --sharecare: #1aba9c;
    --healthgrades: #0202ea;
    --covid-info-bg: #ffed76;
    --covid-info-color: #8a6d3b;
    --implants-gray-color: #808184;
    --guru-gray-color: #6d6e70;
    --screw-gray-color: #58595b;
    --gray-6c6c6c: #6c6c6c;
    
    --Carattere-font: 'Carattere', cursive;
}

.btn {
    font-family: var(--bs-font-montserrat);
}
/*================= nav ==================================================================================================*/
.navbar-collapse {
    flex-grow: 0;
}

#header-nav .nav-item a {
    color: #fff;
    font-size: 16px;
    font-family: var(--bs-font-montserrat);
}

    #header-nav .nav-item a.active {
        color: var(--gold);
    }

    #header-nav .nav-item a:hover {
        color: var(--gold);
    }

.navbar-toggler, .navbar-toggler:focus {
    border: 0px solid transparent;
    box-shadow: 0 0 0 0;
}

.toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.bar {
    width: 100%;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Toggler animation - Open state */
.toggler.open {
    transform: rotate(3deg);
}

    .toggler.open .bar:nth-child(1) {
        transform: translateY(15px) rotate(48deg);
    }

    .toggler.open .bar:nth-child(2) {
        opacity: 0;
    }

    .toggler.open .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-56deg);
    }

/* Show menu when toggler is active */
.menu.active {
    display: block;
}

#contact-btn button {
    font-size: 1.3rem;
}

.green {
    color: var(--primary);
}

.sub-heading {
    color: var(--primary);
}

.text-muted {
    color: #fffc !important;
}

.heading-1 {
    color: #fff;
}
/**/
.nav-item ul li {
    list-style-type: none;
}
/*================= About ==================================================================================================*/
.why-us {
    background: var(--gold);
}

    .why-us h5 {
        font-family: var(--bs-font-montserrat);
        font-weight: 500;
    }

    .why-us p {
        font-family: var(--bs-font-montserrat);
        font-weight: 400;
    }

    .why-us .row {
        padding: 70px;
    }

    .why-us .box img {
        height: 80px;
    }

@media(max-width:1023px) {
    .why-us .row {
        padding: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


/*================= menu-section ==================================================================================================*/

.menu-section {
    background: var(--black);
    padding: 100px;
}

    .menu-section .text {
        color: var(--text-color);
    }

    .menu-section .btn {
        border: 1px solid var(--gold);
        color: var(--gold);
        border-radius: 0px;
        font-size: 18px;
    }


        .menu-section .btn:hover {
            border: 1px solid var(--gold);
            color: var(--white);
            border-radius: 0px;
            font-size: 18px;
            background: var(--gold);
        }

    .menu-section h2 {
        font-family: var(--bs-font-fuzzy-bubbles);
        color: var(--white);
        font-size: 40px;
        font-weight: 600;
    }

    .menu-section span {
        font-family: var(--bs-font-great-vibes);
        color: var(--gold);
        font-size: 70px;
        font-weight: 500;
    }

    .menu-section p {
        line-height: 30px;
    }

@media (min-width:768px) {
    .text {
        margin-right: 36px;
    }
}

@media (max-width:768px) {
    .menu-section {
        background: var(--black);
        padding: 28px;
    }

        .menu-section img {
            padding: 10px;
        }
}

.menu-entry{
    overflow:hidden;
}
    .menu-entry img {
      
        transition: all 0.5s ease !important;
    }
    .menu-entry  img:hover {
        transform: scale(1.1);
        transition: all 0.5s ease !important;
    }

/*================= key-points ==================================================================================================*/
.key-points {
    position: relative;
    background-size: cover;
    padding: 100px;
    background: url(/img/key-points/key-points-bg.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    .key-points::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgb(0 0 0 / 58%);
        z-index: 1;
    }

    .key-points * {
        position: relative;
        z-index: 2;
    }

    .key-points img {
        color: var(--white) !important;
        height: 70px;
        outline: 1px solid var(--gold);
        padding: 10px 20px 10px 20px;
    }

    .key-points h2 {
        color: var(--gold) !important;
        font-size: 40px;
    }

    .key-points p {
        color: var(--text-color) !important;
        font-size: 22px;
        font-family: var(--bs-font-montserrat);
    }


/*================= blog-section ==================================================================================================*/

.blog-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #000;
}

    .blog-section h2 {
        font-family: var(--bs-font-fuzzy-bubbles);
        font-weight: 600;
        color: var(--white);
    }

    .blog-section span {
        font-family: var(--bs-font-great-vibes);
        color: var(--gold);
        font-size: 70px;
        font-weight: 500;
    }

    .blog-section p {
        font-family: var(--bs-font-montserrat);
        font-weight: 400;
        color: var(--white);
    }


    .blog-section .card {
        background: transparent;
    }

        .blog-section .card h6, p {
            color: var(--text-color) !important;
            font-family: var(--bs-font-montserrat);
        }

        .blog-section .card h4 {
            color: var(--white);
            font-family: var(--bs-font-montserrat);
            font-weight: 400;
        }





/*================= review-section ==================================================================================================*/

.review-section {
    background: #000;
    padding-top: 100px;
    padding-bottom: 100px;
}

    .review-section .item {
        padding: 30px;
        text-align: center;
    }

        .review-section .item h4 {
            color: var(--gold);
            font-family: var(--bs-font-montserrat);
            font-weight: 400;
            margin-top: 18px;
        }

        .review-section .item p {
            color: var(--white) !important;
            font-family: var(--bs-font-montserrat);
            font-weight: 400;
            padding-top: 20px;
        }

        .review-section .item i {
            color: var(--white) !important;
            font-size: 40px;
            padding-bottom: 10px;
        }



/*a:link, a:active, a:visited, a:hover {
    color: #3f51b5;
}
*/
.head-text h2 {
    font-family: var(--bs-font-fuzzy-bubbles);
    color: var(--white);
    font-size: 40px;
    font-weight: 600;
}

.head-text span {
    font-family: var(--bs-font-great-vibes);
    color: var(--gold);
    font-size: 70px;
    font-weight: 500;
    padding-bottom: 20px;
}



/*============== service section =====================*/



/*.food-menu-section {
    background: #000;
*/
.food-menu-section {
    padding-top: 150px;
    padding-bottom: 150px !important;
    position: relative;
    background: url('/img/food-menu/food-menu-bg.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

    .food-menu-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 77%);
        z-index: 1;
    }

    .food-menu-section * {
        position: relative;
        z-index: 2;
    }




    .food-menu-section .card {
        background: transparent;
    }


        .food-menu-section .card h4 {
            color: var(--gold);
            font-family: var(--bs-font-montserrat);
            font-weight: 400;
            font-size:22px;
        }

    .food-menu-section .btn:hover {
        border: 1px solid var(--gold);
        color: var(--gold) !important;
        border-radius: 0px;
        font-size: 15px;
        background: transparent;
    }


    .food-menu-section .btn {
        border: 1px solid var(--gold);
        color: var(--white);
        border-radius: 0px;
        font-size: 18px;
        background: var(--gold);
    }

    .food-menu-section h2 {
        font-family: var(--bs-font-fuzzy-bubbles);
        color: var(--white);
        font-size: 40px;
        font-weight: 600;
    }

    .food-menu-section span {
        font-family: var(--bs-font-great-vibes);
        color: var(--gold);
        font-size: 70px;
        font-weight: 500;
    }


/*.why-us-bg-img {

    background-size: cover;
    width: 100%;
    height: auto;
}*/
.curved {
    border-radius: 15px;
}

.why-us-btn .nav-link.active,
.why-us-btn .show > .nav-link {
    color: #fff !important;
    background-color: var(--gold);
    position: relative;
    padding-right: 2.5rem;
}

    .why-us-btn .nav-link.active::after,
    .why-us-btn .show > .nav-link::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -13px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 25px 0 25px 12px;
        border-color: transparent transparent transparent var(--gold);
    }
    @media(max-width:767px){
        .why-us-btn .nav-link.active::after,
        .why-us-btn .show > .nav-link::after {
           display:none;
        }
    }

.nav-pills .nav-link {
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: .25rem;
}


/*=================================== footer =============================*/


footer {
    background: #000;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

    footer ul li {
        list-style-type: none;
        font-size:22px;
    }

    footer h4 {
        color: var(--gold);
        font-family: var(--bs-font-montserrat);
        font-weight: 500;
    }

    footer i {
        color: var(--gold);
    }


    footer a {
        color: var(--text-color) !important;
        font-family: var(--bs-font-montserrat);
        text-decoration: none;
    }

        footer a:hover {
            color: var(--gold) !important;
            font-family: var(--bs-font-montserrat);
            text-decoration: none;
        }

    footer p {
        color: var(--text-color) !important;
        font-family: var(--bs-font-montserrat);
        text-decoration: none;
    }

        footer p:hover {
            color: var(--gold) !important;
            font-family: var(--bs-font-montserrat);
            text-decoration: none;
        }

    footer span {
        color: var(--text-color) !important;
        font-family: var(--bs-font-montserrat);
    }
/*

    footer .text {
        font-family: var(--bs-font-montserrat);
        font-weight: 500;
        font-size: 16px;
        margin-top: 48px;
    }

    footer .icons {
        color: var(--gold);
        font-size: 20px;
        margin-top: 48px;
    }

    footer p {
        font-family: var(--bs-font-montserrat);
        font-weight: 500;
        font-size: 14px;
        margin-top: 50px;*/
/* color: #fff !important;*/
/*}*/




/*========================= top-bar  ===================================*/
.topbar {
    padding-bottom: 150px !important;
    position: relative;
    background: url('/img/food-menu/food-menu-bg.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
/*    height: 100vh;*/
}

    .topbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0,60%);
        z-index: 1;
    }

    .topbar * {
        position: relative;
        z-index: 2;
    }

.nav-img {
    height: 170px;
}



.icons {
    list-style-type: none;
    color: var(--gold) !important;
    font-size: 26px;
}



.hero-section {
    height: 60vh;
}

    .hero-section h2 {
        font-family: var(--bs-font-montserrat);
        font-size: 70px;
        color: white;
        font-weight: 400;
    }

    .hero-section h4 {
        font-size: 24px;
    }

@media (max-width:767px) {
    .hero-section h2 {
        font-size: 55px;
    }

    .hero-section p {
        font-size: 15px !important;
    }

    .hero-section h4 {
        font-size: 20px;
    }

    .hero-section .text {
        margin-top: 137px;
    }
}

.hero-section h4 {
    font-family: var(--bs-font-fuzzy-bubbles);
    color: var(--gold);
    font-weight: 700;
}

.hero-section p {
    font-family: var(--bs-font-montserrat);
    color: #afafaf;
    font-weight: 500;
    font-size: 18px;
}



.hero-section .btn {
    border: 1px solid var(--gold);
    color: var(--white);
    border-radius: 0px;
    font-size: 18px;
    background: var(--gold);
}

    .hero-section .btn:hover {
        border: 1px solid var(--gold);
        color: var(--gold);
        border-radius: 0px;
        font-size: 18px;
        background: transparent;
    }



/*====================================== main =====================================*/

.main {
    padding-top: 100px;
 padding-bottom:50px;
    background: #000;
}

    .main h2 {
        font-family: var(--bs-font-fuzzy-bubbles);
        font-size: 30px;
        color: #000;
        font-weight: 600;
        color: #fff;
    }

    .main h4 {
        font-family: var(--bs-font-great-vibes);
        color: var(--gold);
        font-size: 70px;
        font-weight: 500;
    }

    .main .btn:hover {
        border: 1px solid var(--gold);
        color: var(--white);
        border-radius: 0px;
        font-size: 18px;
        background: var(--gold);
    }

    .main .btn {
        border: 1px solid var(--gold);
        color: var(--gold);
        border-radius: 0px;
        font-size: 18px;
        background: transparent;
    }

.cup-image {
    width: 30%;
}

.cup-image {
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cup {
    position: relative;
    bottom: 130px;
    left: -64px;
}
/*======================================== map section===============================================*/

.map-section {
    position: relative;
    background-size: cover;
    padding: 100px 20px 100px 20px;
    background: url(/img/key-points/key-points-bg.webp);
    background-repeat: no-repeat;
    /*  background-attachment: fixed;*/
}

    .map-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgb(0 0 0 / 58%);
        z-index: 1;
    }

    .map-section * {
        position: relative;
        z-index: 2;
    }

    .map-section h2 {
        font-family: var(--bs-font-montserrat);
        color: var(--white);
        font-size: 40px;
    }

    .map-section p {
        font-family: var(--bs-font-montserrat);
        color: var(--white);
        font-size: 18px;
    }

.btnone:hover {
    border: 1px solid var(--gold);
    color: var(--white);
    border-radius: 0px;
    font-size: 18px;
    background: var(--gold);
}

.btnone {
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 0px;
    font-size: 18px;
    background: transparent;
}



.btntwo {
    border: 1px solid var(--gold);
    color: var(--white) !important;
    border-radius: 0px;
    font-size: 18px;
    background: var(--gold);
}

    .btntwo:hover {
        border: 1px solid var(--gold);
        color: var(--gold) !important;
        border-radius: 0px;
        font-size: 18px;
        background: transparent;
    }


.btnthree {
    border: 1px solid var(--gold);
    color: var(--white) !important;
    border-radius: 0px;
    font-size: 18px !important;
    background: var(--gold);
}

    .btnthree:hover {
        border: 1px solid var(--gold);
        color: var(--gold) !important;
        border-radius: 0px;
        font-size: 18px;
        background: transparent !important;
    }


/*============================ contact-us =================================*/

.contact-us {
    background: radial-gradient(#474040,var(--black));
    padding-top: 100px;
    padding-bottom: 100px;
}

    .contact-us h5 {
        font-size: 30px;
        font-family: var(--bs-font-fuzzy-bubbles);
        color: var(--gold);
    }

    .contact-us .call {
        color: var(--white);
        text-decoration: none;
    }

    .contact-us h2 {
        color: var(--white);
        font-family: var(--bs-font-montserrat);
        font-size:30px;
        font-weight: 400;
    }


    .contact-us .btn {
        border: 1px solid var(--gold);
        color: var(--gold);
        border-radius: 0px;
        font-size: 13px;
    }


        .contact-us .btn:hover {
            border: 1px solid var(--gold);
            color: var(--white);
            border-radius: 0px;
            font-size: 13px;
            background: var(--gold);
        }

a {
    text-decoration: none;
}

.form-control {
    color: white;
    background-color: transparent !important;
    border: none;
    border-bottom: 2px solid orange;
}

    .form-control::placeholder {
        color: white;
        font-family: var(--bs-font-montserrat);
    }

.form-group {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 10px;
}

    .form-group input, .form-group textarea {
        border: none;
        outline: none;
    }

        .form-group input:focus, .form-group textarea:focus {
            border: none;
            outline: none;
        }

.mb-30 {
    margin-bottom: 100px;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }



.form-section {
    position: relative;
    background-size: cover;
    padding: 100px 0px;
    background: url(/img/restaurant.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    .form-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgb(0 0 0 / 58%);
        z-index: 1;
    }

    .form-section * {
        position: relative;
        z-index: 2;
    }

    .form-section h5 {
        font-size: 30px;
        font-family: var(--bs-font-fuzzy-bubbles);
        color: var(--gold);
        margin-bottom: 20px;
    }


    .form-section .btn {
        border: 1px solid var(--gold);
        color: var(--white);
        border-radius: 0px;
        font-size: 13px;
        background: var(--gold);
    }

        .form-section .btn:hover {
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 0px;
            font-size: 13px;
            background: transparent;
        }




.topbar-two {
    padding-bottom: 150px !important;
    position: relative;
    background: url('/img/main-slider/slider-bg.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    height: 60vh;
}

    .topbar-two::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0,60%);
        z-index: 1;
    }

    .topbar-two * {
        position: relative;
        z-index: 2;
    }


.hero-section-two {
    height: 40vh;
}

    .hero-section-two h2 {
        font-family: var(--bs-font-montserrat);
        font-size: 70px;
        color: white;
        font-weight: 400;
    }

.breadcrumb {
    font-family: var(--bs-font-montserrat);
    text-align: center;
    font-weight: 500;
    font-size: 22px;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/*========================================= About us========================================*/

.about-us {
    background: radial-gradient(#474040, var(--black));
    padding-top: 100px;
    padding-bottom: 100px;
}

    .about-us h2 {
        font-family: var(--bs-font-montserrat);
        font-weight: 400;
        text-align: center;
        font-size: 50px;
        color: var(--gold);
    }

    .about-us h4 {
        font-family: var(--bs-font-montserrat);
        font-weight: 400;
        color: var(--white);
    }

    .about-us img {
        height: 150px;
    }

.pl-75 {
    padding-left: 45px;
}

.about-us hr {
    color: var(--text-color);
}



.back-to-top i {
    color: var(--white);
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 20px;
    text-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
    text-align: center;
    background: none 0px 0px repeat scroll var(--gold);
    padding: 0px;
    border-radius: 20px;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.backToTopIsvisible .back-to-top {
    visibility: visible;
    opacity: 1;
}


.back-to-top:hover {
    opacity: 1;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

    .back-to-top:hover i {
        background-color: var(--white);
        color: var(--text-dark);
        border-radius: 20px;
        -webkit-transition: opacity .3s;
        -moz-transition: opacity .3s;
        -o-transition: opacity .3s;
        transition: opacity .3s
    }



/*=====================================  requestAnAppointmentModal =========================================*/



#requestAnAppointmentModal .modal-title {
    color: var(--gold) !important;
    font-size: 28px;
}
/*#recaptcha2 > div{
transform:scale(0.8);
}*/
.form-label {
    color: var(--gold) !important;
    font-family: var(--bs-font-montserrat);
    font-weight: bold;
}

.backToTopIsvisible .back-to-top {
    visibility: visible;
    opacity: 1;
}


.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    overflow: hidden;
}

/*#header-nav > div {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 10px 0px;
}*/
