/********** Template CSS **********/
:root {
    --primary: #FF0000;
    --light: #F1F8FF;
    --dark: #0F172B;

    /* Animation Timing Function */
    --primary-timing-func: cubic-bezier(0.86, 0, 0.07, 1);
    /* Button Variables */
    --button-radius: 60px; 
    --button-inner-ring-radius: 120px;
    --button-outer-ring-radius: 100px;
    --button-gradient: 135deg, rgba(244,87,116,1) 0%, rgba(229,69,139,1) 100%;
    --main-background-color: #edc1c2;
    /* Menu Variables */
    --menu-radius: calc(var(--button-radius) - 2px);
    --menu-height: 255px;
    --menu-width: 245px;
    --menu-border-radius: 10px;
    --menu-bg-color: #141622;
    --menu-timing-function: var(--primary-timing-func);
    --menu-icon-size: 30px;
    /*   Close Icon */
    --close-icon-timing-function: var(--primary-timing-func);
}


svg{
  fill: #FFFFFF;
}

.py-10 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.sticky-menu-container{
    position: fixed;
    right: 50px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    display: none;
}

.sticky-menu-container .outer-button{
  position: absolute;
  height: var(--button-radius, 70px);
  width: var(--button-radius, 70px);
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 10px 10px 18px 5px rgba(0,0,0,0.2);
  cursor: pointer;
}
.sticky-menu-container .outer-button .icon-container{
  height: inherit;
  width: inherit;
  border-radius: inherit;
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
  overflow: hidden;
  position: relative;
  cursor: inherit;
}
.sticky-menu-container .outer-button .close-icon{
  transform: scale(0) rotate(-270deg);
  opacity: 0;
  height: 25px;
  width: 25px;
  position: absolute;
  fill: #FFFFFF;
}

.sticky-menu-container .outer-button .arrow-icon{
  height: 25px;
  width: 25px;
  position: absolute;
  fill: #FFFFFF;
}

.sticky-menu-container .outer-button .arrow-icon.hiding-spot{
transform: translateX(calc(var(--button-radius) / -2)) translateY(calc(var(--button-radius) / 2));
  opacity: 0;
}

.sticky-menu-container .outer-button .close-icon.show{
  animation-duration: 1000ms;
  animation-name: close-in;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function); 
}

.sticky-menu-container .outer-button .close-icon.hide{
  animation-duration: 1000ms;
  animation-name: close-out;
  animation-timing-function: var(--close-icon-timing-function); 
}

.sticky-menu-container .outer-button .arrow-icon.show{
  opacity: 0;
  animation-duration: 1000ms;
  animation-name: arrow-in;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function); 
/*   animation-delay: 250ms; */
}

.sticky-menu-container .outer-button .arrow-icon.hide{
  animation-duration: 1000ms;
  animation-name: arrow-out;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function); 
}

.sticky-menu-container .outer-button::after, sticky-menu-container.outer-button::before{
  position: absolute;
  display: inline-block;
  content: "";
  height: var(--button-inner-ring-radius);
  width: var(--button-inner-ring-radius);
  border-radius: 50%;
  background-color:transparent;
  border: 0px solid rgba(255,255,255,0.5);
  opcacity: 0;
  cursor: pointer;
}

.sticky-menu-container .outer-button.clicked::after{
  animation-duration: 500ms;
  animation-name: touch-click-inner;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.sticky-menu-container .outer-button::before{
  height: var(--button-outer-ring-radius);
  width: var(--button-outer-ring-radius);
}

.sticky-menu-container .outer-button.clicked::before{
  animation-name: touch-click-outer;
  animation-duration: 500ms;
  animation-iteration-count: 1;
  animation-delay: 250ms;
}

.sticky-menu-container .inner-menu{
  position: absolute;
  height: var(--menu-height);
  width: var(--menu-width);
  border-radius: var(--menu-border-radius);
  background-color: var(--menu-bg-color); 
/*   transform: translate(calc(-50% + var(--button-radius) / 2), calc(-55% - var(--button-radius) / 2)); */
  transform: translateX(-91px) translateY(-169px);
  transition: all 1000ms cubic-bezier(0.86, 0, 0.07, 1);
/*   transition-delay: 500ms; */
  padding: 30px;
  overflow: hidden;
  box-shadow: 10px 10px 18px 5px rgba(0,0,0,0.4);
}

.sticky-menu-container .inner-menu > ul{
  height: 100%;
  list-style: none;
/*  display: flex;*/
  flex-wrap: wrap;
  align-content: space-between;
  margin: 0;
  padding: 0;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item{
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 3px;
  width: 100%;
  display: flex;
  align-items: center;
    padding: 10px 0;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item{
  overflow: hidden;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item > a{
  color: #FFFFFF;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item > a:hover{
  color: #FFFFFF;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item > .item-icon{
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item > .item-icon > svg{
  height: var(--menu-icon-size);
  width: var(--menu-icon-size);
}

.sticky-menu-container .inner-menu.closed{
  height: var(--menu-radius);
  width: var(--menu-radius);
  border-radius: 50%;
  padding:0;
  transform: unset;
}

/*.sticky-menu-container .inner-menu > .menu-list > .menu-item > .item-text{
  opacity: 0;  
}*/

.sticky-menu-container .inner-menu > .menu-list > .menu-item > .item-text.text-in{
  animation-duration: 1500ms;
  animation-name: text-in;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function);
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item.text-hides{
  animation-duration: 200ms;
  animation-name: text-hides;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function);
}

@keyframes touch-click-inner {
  50%{ 
      transform: scale(0.375);
      border-width: 30px;
      opacity: 1;
  }
  100%{ 
      transform: scale(1);
      border-width: 1px;
      opacity: 0;
  }
}

@keyframes touch-click-outer {
  0%{
    border-width: 10px;
    opacity: 0;
  }
  50%{
    opacity: 0.2;
  }
  100%{ 
      transform: scale(1.1);
      opacity: 0;
  }
}

@keyframes close-in{
  0%{
    transform: transform: scale(0) rotate(270deg);
    opacity: 0;
  }
  100% {
    transform: scale(1.1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes close-out{
  0%{
    transform: scale(1.1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(0) rotate(270deg);
    opacity: 0;
  }
}

@keyframes arrow-out{
  0%{
    transform: translateX(0) translateY(0);
  }
  100%{
    transform: translateX(calc(var(--button-radius) / 1.5)) translateY(calc(var(--button-radius) / -1.5));
  }
}

@keyframes arrow-in{
  0%{
    transform: translateX(calc( -1 * var(--button-radius))) translateY(calc(var(--button-radius)));
    opacity: 0;
  }
  100%{
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

@keyframes text-in{
  0%{
    opcaity: 1;
    transform: translateY(50px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes text-hides{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Gilroy' !important;
    line-height: normal;
    background: var(--primary);
}

.container-menu{
    max-width: 100%;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-nav{
    margin-left: calc(100 * (175vw/1320));
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    align-items: center;
}

/*.nav-rem{
    margin: 0;
    padding: 0;
}

.nav-rem a{
    float: right;
}*/

.top-add-phn{
    color: #fff;
    margin-top: 22px;
    width: calc(100*(225vw / 1320));
    font-size: calc(100*(13vw / 1320));
    line-height: calc(100*(18vw / 1320));
}

.call-btn{
    background-color: #CFAC76 !important;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: calc(100*(10vw / 1320));
    padding: calc(100*(40vw / 1320)) 0;
    font-size: calc(100*(13vw / 1320));
    color: var(--light) !important;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-brand{
    top: 1rem;
    position: absolute;
}

.navbar-p{
    font-size: calc(100 * (17vw/1320));
    line-height: calc(100 * (25vw/1320));
    color: #fff;
    padding: 0;
    margin: 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    /*width: calc(100 * (150vw/1320));*/
    max-width: calc(100 * (150vw/1320));
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

.banner {
    width: 100%;
    /*height: calc(100 * (620vw/1520));
    height: -webkit-calc(100 * (620vw/1520));
    height: -moz-calc(100 * (620vw/1520));*/
    height: 80vh;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.banner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(1, 1, 1, 0.49) 100%);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(1, 1, 1, 0.49) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(1, 1, 1, 0.49) 100%);
}

.banner-img{
    width: 100%;
    height: 100%;
    object-fit: unset;
    object-position: center;
}

.banner-vdo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content{
    display: block;
    width: 50%;
    height: auto;
    position: absolute;
    /*left: 25%;
    bottom: 30vh;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: calc(100 * (10vw/1320));
    cursor: pointer;
    /*background: #000;
    opacity: 0.7;*/
}

.banner-logo{
    width: calc(100 * (250vw/1320));
}

.name_logo_banner{
    width: calc(100 * (450vw/1320));
}

.name_logo_top{
    width: calc(100 * (200vw/1320)) !important;
}

h1.banner-restaurant-name{
    font-size: calc(100 * (70vw/1320));
    font-weight: 500;
    color: #fff;
    font-family: 'Bebas Neue' !important;
}

h2.banner-restaurant-location{
    color: #F0DB90;
    font-family: 'Gilroy' !important;
}

.banner-restaurant-p{
    font-size: calc(100 * (20vw/1320));
}

.banner-restaurant-text{
    background: var(--primary);
    color: #FFF;
    border-radius: calc(100 * (10vw/1320));
    font-family: 'Gilroy' !important;
    font-size: calc(100 * (17vw/1320));
    text-transform: uppercase;
    padding: 0 calc(100 * (17vw/1320));
}

.banner-btn-social{
    margin: 0;
    padding: 0;
}

.banner-btn-social img{
    width: calc(100 * (40vw/1320));
}

.banner-btn{
    background: var(--primary);
    color: #FFF;
    border-radius: calc(100*(15vw / 1320));
    font-family: 'Bebas Neue' !important;
    font-size: calc(100*(18vw / 1320));
    line-height: calc(100*(25vw / 1320));
    text-transform: none;
    min-width: calc(100*(155vw / 1320));
    padding: calc(100*(2vw / 1320)) 0 0 0;
}

.top-btn{
    background: var(--primary);
    color: #FFF;
    border-radius: calc(100*(15vw / 1320));
    font-family: 'Bebas Neue' !important;
    font-size: calc(100*(18vw / 1320));
    line-height: calc(100*(25vw / 1320));
    text-transform: none;
    /*min-width: calc(100*(155vw / 1320));
    padding: calc(100*(2vw / 1320)) 0 0 0;*/
    min-width: unset;
    padding: calc(100*(1vw / 1320)) calc(100*(12vw / 1320)) 0 calc(100*(12vw / 1320));
}

.sub-btn{
    background-color: #D95A1E !important;
    font-family: 'Bebas Neue' !important;
    font-size: calc(100*(15vw / 1320)) !important;
    line-height: calc(100*(25vw / 1320)) !important;
    border-radius: calc(100*(30vw / 1320)) !important;
    padding: calc(100*(1vw / 1320)) 0 0 0 !important;
    margin: 0 calc(100*(10vw / 1320)) !important;
    min-width: calc(100*(150vw / 1320)) !important;
    max-height: calc(100*(120vw / 1320)) !important;
    height: auto !important;
}

.banner-btn:hover{
    color: #FFF !important;
}

.info-btn{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: var(--primary);
    border: none;
    border-radius: 10px;
    transition: box-shadow 0.15s ease-in-out;
    color: #FFF;
    border-color: #FFF;
    display: none;
}

.menu-bar-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: var(--primary);
    border: none;
    border-radius: 10px;
    transition: box-shadow 0.15s ease-in-out;
    color: #FFF;
    border-color: #FFF;
    display: none;
}

.navbar-btn{
    background: #CFAC76;
    color: #FFF;
    border-radius: calc(100 * (10vw/1320));
    font-size: calc(100 * (17vw/1320));
    text-transform: none;
}

.nav-menu{
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 999;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    overflow-y: auto;
    background: #000;
    padding: 10px 20px;
    display: none;
}

.nav-menu .nav-menu-item{
    position: relative;
    padding: 10px 0;
    margin-left: 0;
    font-size: 15px;
    color: #FFF !important;
    text-transform: uppercase;
    font-weight: 800;
    outline: none;
    transition: .5s;
    display: block;
}

.nav-menu .nav-menu-top{
    display: block;
    position: sticky;
    top: 0px;
    z-index: 999;
    height: 35px;
}

.nav-menu .nav-menu-close{
    position: sticky;
    width: 35px;
    height: 35px;
    float: right;
    color: #fff;
    padding: 5px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
}

.contact-btn{
    display: flex;
}

.map-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

.main-text{
    font-size: 1.5rem;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

.service .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.service .btn.btn-social:hover {
    color: var(--primary);
}

.service .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--primary);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.service .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.service .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.bg-spcl{
    background: #FAF8F2;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

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

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
    border-radius: calc(100 * (20vw/1320)) !important;
}

.testimonial-carousel .owl-item .testimonial-item img{
    border-radius: calc(100 * (20vw/1320)) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    /*background: var(--primary) !important;
    border-color: var(--primary) !important;*/
}

.testimonial-carousel .owl-item.center .testimonial-item * {
/*    color: var(--light) !important;*/
}
.menu-carousel .owl-item .testimonial-item{
/*    border-radius: 12px !important;*/
}
.menu-carousel .owl-item .testimonial-item .item-name-container{
    background: #000;
    opacity: 0.7;
    position: absolute;
    top: 25px;
    right: 0;
    max-width: 50%;
    height: auto;
    color: #fff;
    padding: 5px 10px;
}

.menu-carousel .owl-item .testimonial-item .item-name{
    color: #fff;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
/*    width: 15px;*/
    height: 14px;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--dark);
}

.testimonial-block{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100 * (170vw/1320));
}

.testimonial-block .heading{
    font-size: calc(100 * (20vw/1320));
    color: #ff0000;
    font-weight: 700;
}

.testimonial-block .comment{
    font-size: calc(100 * (15vw/1320));
}

.testimonial-block .customer{
    text-align: right;
    font-size: calc(100 * (15vw/1320));
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.subscribe-input{
    border-radius: calc(100 * (10vw/1320));
}

.subscribe-btn{
    background: #CFAC76;
    color: #FFF;
    border-radius: 0 calc(100 * (10vw/1320)) calc(100 * (10vw/1320)) 0;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.mob{
    display: none !important;
}

.cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 1rem;
    top: 6rem;
    background: #ff0000;
    width: 4rem;
    height: 4rem;
    padding: 1.2rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none; 
}
.cc-calto-action-ripple i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 1.7rem; 
}
/*.cc-calto-action-ripple:hover i {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); 
}*/
  
@-webkit-keyframes cc-calto-action-ripple {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2); }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } 
}
  
@keyframes cc-calto-action-ripple {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2); }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } 
}

span.num{
    position: absolute;
    color: #fff;
    left: -30%;
    bottom: -50%;
}

.ai_microphone {
    background: #ff0000;
    z-index: 99999;
    position: fixed;
    right: 2.5rem;
    bottom: 6rem;
    width: 4rem;
    height: 4rem;
    padding: 1.4rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: ai_microphone 0.6s linear infinite;
    animation: ai_microphone 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none; 
}
.ai_microphone i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 1.7rem; 
}
/*.ai_microphone:hover i {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); 
}*/

@-webkit-keyframes ai_microphone {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2); }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } 
}
  
@keyframes ai_microphone {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2); }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } 
}

.voice_ai_modal{
    z-index: 99999;
    background: transparent;
}
.voice_ai_modal .modal-dialog{
    max-width: calc(100 * (800vw/1520));
}
.voice_ai_modal .modal-content{
    background: transparent;
}
.voice_ai_modal .modal-content .close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 9;
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
.voice_ai_modal .modal-body{
    padding: 0 !important;
}
.voice_ai_modal .modal-body .voice_ai_modal_iframe{
  width: 100%;
  height: calc(100 * (700vw/1520));
  margin: 0;
  padding: 0;
  border-radius: calc(100 * (12vw/1520));
}
.voice_ai_modal .modal-body .close {
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 1;
}
.voice_ai_modal .modal-body .close img{
  width: calc(100 * (55vw/1520));
}

.banner-offr-content{
    display: block;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: calc(100 * (650vw/1520));
    height: calc(100 * (650vw/1520));
    max-height: 86%;
    margin: 0;
    padding: calc(100 * (35vw/1520));
    border-radius: calc(100 * (15vw/1520));
    background: #fff;
}
.banner-sub{
    padding: 0 !important;
    background: transparent;
    height: auto;
    max-height: unset;
    border-radius: calc(100*(45vw / 1520));
    overflow: hidden;
}
.banner-offr-content .banner-offr-content-text{
    height: 100%;
}

.banner-offr-content .banner-offr-content-text .img-vdo {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-offr-content .banner-offr-content-text .img-vdo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-offr-content .banner-offr-content-text .link-btn {
    position: absolute;
    bottom: calc(100*(10vw / 1520));
    /* left: calc(100*(75vw / 1520)); */
    width: 100%;
    height: calc(100*(150vw / 1520));
    /* border: #000 1px solid;
    right: calc(100*(135vw / 1520)); */
}

.banner-offr-content .banner-offr-content-text .link-btn img{
    width: calc(100 * (240vw/1520));
}

.banner-offr-content h1{
    font-family: 'Playfair Display' !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
/*    -webkit-line-clamp: 3;*/
    -webkit-box-orient: vertical;
    height: calc(100 * (300vw/1520));
    max-height: 48%;
    /*font-size: calc(100 * (72vw/1520));
    margin-bottom: 2rem;*/
}
.banner-offr-content h1.ofr_title_small{
    font-size: calc(100 * (45vw/1520)) !important;
}
.banner-offr-content h1.ofr_title_medium{
    font-size: calc(100 * (53vw/1520)) !important;
}
.banner-offr-content h1.ofr_title_large{
    font-size: calc(100 * (72vw/1520)) !important;
}

.banner-offr-content p{
/*    font-family: 'Playfair Display' !important;*/
    font-weight: 500;
    color: #000;
    margin: calc(100 * (20vw/1520)) 0;
    font-size: calc(100 * (30vw/1520));
}
.banner-offr-content .banner-btn{
    position: absolute;
    bottom: calc(100 * (5vw/1520));
    background: #000;
}
.banner-offr-logo-section{
    position: absolute;
    right: 5%;
    bottom: 15%;
    text-align: center;
}
.banner-offr-logo-section .banner-logo{
    display: none;
}
.banner-offr-logo-section .banner-restaurant-p{
    display: none;
}
.banner-offr-content .owl-carousel, .banner-offr-content .owl-carousel .owl-stage-outer, .banner-offr-content .owl-carousel .owl-stage-outer .owl-stage, .banner-offr-content .owl-carousel .owl-stage-outer .owl-stage .owl-item{
    height: 100% !important;
}
.banner-offr-content .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    font-size: calc(100 * (35vw/1520));
    color: #6c757d;
    bottom: 42%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    /* width: 45px; 
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff; */
}
.banner-offr-content .owl-theme .owl-nav button.owl-prev {
    left: -5%;
}
.banner-offr-content .owl-theme .owl-nav button.owl-next {
    right: -5%;
}
.bottom-button-sec{
    display: none;
    background: #000;
    opacity: 0.5;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 9;
    padding: 0 30px;
    text-align: center;
}
.btn-top{
    display: none;
    width: 75%;
    max-width: 450px;
    position: fixed;
    top: 0;
    z-index: 99;
    margin: 0 13%;
}

.yelp-iframe{
    width: 100%;
    min-width: 990px;
}

.reservation-widget__09f24__jOLtt{
    max-width: 1024px !important;
}

.pop-desk{
    display: block !important;
}

.pop-mob{
    display: none !important;
}

.sub-btn-mob{
    display: none;
}
.no-radius{
    border-radius: 0 !important;
}
.mod-banner{
    width: calc(100*(625vw / 1520));
    height: calc(100*(600vw / 1520));
    background: #FFD52F;
}
.mod-pizza-box{
    position: absolute;
    top: calc(100*(-5vw / 1520));
    z-index: 9;
}
.mod-pizza-img{
    height: calc(100*(470vw / 1320)) !important;
}
.mod-ellipse-box{
    position: absolute;
    top: calc(100*(240vw / 1520));
    left: calc(100*(25vw / 1520));
    z-index: 99;
}
.mod-ellipse-img{
    height: calc(100*(150vw / 1320)) !important;
}
.mod-fifth-text-box{
    position: absolute;
    top: calc(100*(250vw / 1520));
    left: calc(100*(66vw / 1520));
    z-index: 999;
    -webkit-transform: rotate(-18deg); 
    -moz-transform: rotate(-18deg);    
    transform:rotate(-18deg);
}
.mod-fifth-text-box p{
    padding: 0 !important;
    margin: 0 !important;
    text-align: center;
}
.mod-fifth-text-box p.roboto{
    font-family: 'Roboto';
    font-size: calc(100*(13vw / 1320));
    line-height: calc(100*(15vw / 1320));
    color: #FFF600;
}
.mod-fifth-text-box p.agrandir-small{
    font-family: 'Agrandir GrandHeavy';
    font-size: calc(100*(13vw / 1320));
    line-height: calc(100*(15vw / 1320));
    font-weight: 600;
    color: #FFF;
}
.mod-fifth-text-box p.agrandir{
    font-family: 'Agrandir GrandHeavy';
    font-size: calc(100*(26vw / 1320));
    line-height: calc(100*(30vw / 1320));
    font-weight: 600;
    color: #FFF;
}
.mod-fourth-text-box{
    position: absolute;
    bottom: calc(100*(30vw / 1520));
    left: calc(100*(20vw / 1520));
    z-index: 99;
}
.mod-fourth-text-box p{
    font-family: 'Roboto';
    font-size: calc(100*(14vw / 1320));
    font-weight: 600;
    color: #740C00;
    padding: 0 !important;
    margin: 0 !important;
}
.mod-title-box{
    position: absolute;
    top: calc(100*(-18vw / 1520));
    left: calc(100*(165vw / 1520));
}
.mod-title-img{
    height: calc(100*(225vw / 1320)) !important;
}
.mod-bracket-left-box{
    position: absolute;
    top: calc(100*(200vw / 1520));
    left: calc(100*(200vw / 1520));
}
.mod-bracket-img{
    height: calc(100*(260vw / 1320)) !important;
}
.mod-bracket-right-box{
    position: absolute;
    top: calc(100*(212vw / 1520));
    left: calc(100*(480vw / 1520));
}
.mod-first-text-box{
    position: absolute;
    top: calc(100*(250vw / 1520));
    left: calc(100*(245vw / 1520));
}
.mod-first-text-box p{
    font-family: 'Degular Display Bold';
    font-size: calc(100*(65vw / 1320));
    line-height: calc(100*(65vw / 1320));
    color: #740C00;
    text-transform: uppercase;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
}
.mod-first-text-box p.spl{
    font-size: calc(100*(45vw / 1320));
    line-height: calc(100*(50vw / 1320));
}
.mod-first-text-box span{
    color: #DA0000;
}
.mod-first-small-text-box {
    position: absolute;
    top: calc(100*(464vw / 1520));
    left: calc(100*(325vw / 1520));
}
.mod-first-small-text-box p{
    font-family: 'Degular Display Bold';
    font-size: calc(100*(20vw / 1320));
    line-height: calc(100*(25vw / 1320));
    font-weight: 800;
    color: #740C00;
    text-transform: uppercase;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
}
.mod-second-text-box{
    position: absolute;
    top: calc(100*(365vw / 1520));
    left: calc(100*(315vw / 1520));
}
.mod-second-text-box p{
    font-family: 'Agrandir GrandLight';
    font-size: calc(100*(16vw / 1320));
    line-height: calc(100*(20vw / 1320));
    font-weight: 300;
    color: #0A0908;
    text-transform: uppercase;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
}
.mod-countdownt-box{
    position: absolute;
    top: calc(100*(400vw / 1520));
    left: calc(100*(230vw / 1520));
}
.banner-text-fifth-right{
    width: calc(100*(315vw / 1320));
    /* padding: calc(100*(15vw / 1320)); */
    margin: 0 auto;
    /* margin-bottom: calc(100*(35vw / 1320)) !important; */
    border-radius: calc(100*(10vw / 1320));
    border: #CFAC7666 1px solid;
    display: flex;
    justify-content: space-between;
}
.banner-text-fifth-right .date-blocks{
    font-family: 'SF Pro Display Bold';
    background: #000;
    color: #fff;
    text-align: center;
    width: 30%;
    border-radius: calc(100*(10vw / 1320));
    padding: calc(100*(5vw / 1320));
}
.banner-text-fifth-right .date-blocks .date-blocks-up{
    font-size: calc(100*(35vw / 1320));
    line-height: calc(100*(45vw / 1320));
    font-weight: 600;
}
.banner-text-fifth-right .date-blocks .date-blocks-down{
    font-size: calc(100*(15vw / 1320));
    line-height: calc(100*(20vw / 1320));
    text-transform: uppercase;
}
.mod-third-text-box{
    position: absolute;
    top: calc(100*(505vw / 1520));
    left: calc(100*(260vw / 1520));
}
.mod-third-text-box p{
    font-family: 'Agrandir GrandHeavy';
    font-size: calc(100*(15vw / 1320));
    line-height: calc(100*(20vw / 1320));
    font-weight: 800;
    color: #740C00;
    text-transform: uppercase;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
}
.subs-btn{
    display: block;
    width: calc(100*(300vw / 1320));
    padding: calc(100*(10vw / 1320)) 0;
    background: #BE0009;
    color: #FFF;
    border-radius: calc(100*(30vw / 1320));
    font-family: 'Degular Display';
    font-size: calc(100*(35vw / 1320));
    line-height: calc(100*(40vw / 1320));
    text-align: center;
    text-transform: uppercase;
}
.promo-code {
    /*width: 70%;*/
    height: auto;
    padding: 0;
}
.mod-waitlist-box{
    position: absolute;
    top: calc(100*(505vw / 1520));
    left: calc(100*(230vw / 1520));
}
.promo-code .form-box {
    border-radius: 13px;
    background: #F5F4F4;
}
.promo-code .form-control {
    width: 100% !important;
    height: calc(100*(42vw / 1520)) !important;
    border-radius: calc(100*(8vw / 1520)) 0 0 calc(100*(8vw / 1520)) !important;
    font-size: calc(100*(22vw / 1520)) !important;
    line-height: calc(100*(27vw / 1320)) !important;
    padding: 0 calc(100*(25vw / 1520));
    border: none;
    border-right: none;
}
.promo-code .use-btn {
    height: calc(100*(42vw / 1520)) !important;
    padding: 0 calc(100*(30vw / 1520)) !important;
    background: #BE0009;
    color: #fff;
    font-weight: 600;
    font-size: calc(100*(22vw / 1520)) !important;
    line-height: calc(100*(27vw / 1320)) !important;
    border-radius: 0 calc(100*(8vw / 1520)) calc(100*(8vw / 1520)) 0 !important;
    border: none;
    cursor: pointer;
}
.promo-msg {
    font-size: calc(100*(17vw / 1520)) !important;
    color: #ff0000 !important;
}

.notify-email{
    width: 90%;
    margin: 0 auto;
}

.map-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.wkh-accordion{
    width: 80%;
}
.wkh-box{
    border: none !important;
}
.wkh-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.4rem 0;
    color: #000;
    background-color: #fff !important;
    font-size: calc(100*(18vw / 1320));
}
.wkh-body{
    padding: 0 !important;
}
.wkh-sec{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 0;
    font-size: calc(100*(17vw / 1320));
}
.wkh-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    font-size: calc(100*(18vw / 1320));
}
.about-p{
    font-size: calc(100*(21vw / 1320));
    line-height: calc(100*(26vw / 1320));
}
.contact-p {
    display: flex;
    align-items: center;
    font-size: calc(100*(18vw / 1320));
    line-height: calc(100*(30vw / 1320));
    font-weight: 400;
    color: #000;
}