@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --style-font: 'Cormorant Garamond', serif;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Arial', serif;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;

}

section {
  padding: 2.111rem 0;
}

::selection {
  color: #748194;

}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background: #222222;
}

a {
  color: inherit;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);

}

.flex {
  display: flex;
}

.lead {
  opacity: 0.8;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5;
}

.gold-head {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.black-bg {
  background-color: var(--black);
  color: var(--bs-gray-400);
}
.bg-light{

}
h1 {
  font-size: 80px;
  line-height: 4.25rem;
  font-weight: 700;
  color: white;
  text-transform: capitalize;
  font-family: var(--style-font);
}

@media (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 2.5rem;
  }
}

.img-hover {
  transition: .2s ease-in;
}

.img-fluid {
  box-shadow: 8px 8px 4px #d9a408;
}

.img-hover:hover {
  transform: scale(.8);
}

header .navbar {
  background-color: rgba(0, 0, 0, 0.7);
}

header .navbar .navbar-nav li .nav-link {
  display: block;
  width: fit-content;
  color: white;
  font-weight: 700;

  border: none;
}

header .navbar .navbar-nav li .nav-link:hover {
  color: #e7272d;
  opacity: .8;
}

header .navbar ul li .nav-link.active {
  color: #E0E7E9;
}

header .navbar .link-btn {
  margin-left: auto;
  margin-right: auto;
}

.fourth-button {

    font-family: 'Oswald', sans-serif;
    border: 2px solid #e7272d;
    color: #e7272d;
    padding: 10px 44px;
    background: transparent;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

}


.fourth-button:hover::before {
  width: 50px;
  height: 50px;
  border-left: 3px #E0E7E9 solid;
  border-top: 3px #E0E7E9 solid;
}

.fourth-button:hover::after {
  width: 50px;
  height: 50px;
  border-right: 3px #9da9bb solid;
  border-bottom: 3px #9da9bb solid;
}

.fourth-button:hover {
  color: #E0E7E9;
  box-shadow: 0px 5px 15px 1px #e7272d;
  border-color: #748194;
}

.hover-underline {
  position: relative;
  max-width: max-content;

}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid #e7272d;
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);

}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}
.banner_wrapper {
  height: 80vh;
}

.banner_wrapper .swiper {
  width: 100%;
  height: 100%;
}

.banner_wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
}

.banner_wrapper .swiper-slide::before {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);

  z-index: 0;
}

.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: .9375rem;
  height: .9375rem;
  background-color: white;
  border: .0625rem solid white;
}

.banner_wrapper .swiper .slide-caption {
  text-align: center !important;
  height: 100%;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center !important;
}

.banner_wrapper .swiper .slide-caption p {

  text-align: center;
  max-width: 37.5rem;
  margin: 0 auto;
  color: white;
}


@media (max-width:991px) {

  section {
    padding: 1.675rem 0;
  }
}


.bg-images {
  background: rgba(0, 0, 0, 0.8);
  background-position: center;
  background-size: cover;

  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bg-images section {
  margin-top: 10vh;
}

.bg-images section h1 {
  font-weight: 600;
  font-family: var(--style-font);
  letter-spacing: 3px;
}

.contact section p {
  color: white;
  text-align: center;
}

.contact section a {
  text-decoration: none;
  color: inherit;
  transition: .1s;
  border-bottom: 1px solid transparent;
}

.contact section a:hover {
  border-color: var(--bs-secondary);
}


@media only screen and (min-width: 992px) {

  header .navbar .link-btn {
    margin: 0;
    margin-left: auto;
  }

}
@media (max-width: 767px) {
  .section1 {
    text-align: center !important;
    align-items: center !important;

  }
}

.footer_wrapper {

  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('images/section_bg02.png') center/cover no-repeat fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #cfa456;
  padding: 5% 0 5% 0;
}

.footer_wrapper h5 {
  color: #cfa456;
  margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
  margin-bottom: .5rem;
  list-style: none;
}

.footer_wrapper .contact-info li a {
  color: white;
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
  color: white;
  font-size: 14px;
  padding-left: 1.5rem;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);

}

.footer_wrapper .link-widget li a:hover {
  margin-left: .625rem;
  color: white;
}

.footer_wrapper .social-network a {
  width: 2.1875rem;
  height: 2.1875rem;
  margin: .5rem;
  line-height: 2rem;
  font-size: .875rem;
  display: inline-block;
  border: .125rem solid white;
  color: var(--text-gray);
  text-align: center;
  border-radius: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
  background-color: #cfa456;
  border-color: var(--secondary-color);
  color: var(--text-white);
  box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
  transform: translateY(-0.1875rem);
}

.footer_wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--secondary-color);
}

.footer_wrapper .copyright-section {
  background-color: #020202;
  padding: 1.10rem 0 .3125rem;
  text-align: center;
}

.footer_wrapper .copyright-section a {
  color: white;
}

@media (max-width: 767px) {
  .footer_wrapper>div {
    padding: 0 1.875rem;
  }
}

@media (max-width:800px) {

  .container .link-btn,
  .link-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0 25px;
    font-size: 12px;
    line-height: 35px;
  }

  .none {
    display: none;
  }

  .btnfooter {
    display: none;
  }
}

.review-item blockquote {

  line-height: 1.8;
  font-weight: 700;
}

.review-content .swiper-arrow {
  top: 50%;
  bottom: 0;
  z-index: 2;
  border: 1px solid var(--bs-gray-400);
  color: var(--bs-gray-400);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: 0.4s ease-in-out;
}

.review-content .swiper-arrow:hover {
  border: 1px solid #4d5969;
  color: #4d5969;
}

.review-content .swiper-arrow.swiper-arrow-prev {
  left: -40px;
}

.review-content .swiper-arrow.swiper-arrow-next {
  right: -40px;
}

.review-content .quotation svg.quote {
  color: gray;
}

#testimonials .swiper-pagination {
  display: none;
}

@media only screen and (max-width: 901px) {
  #testimonials .swiper-pagination {
    display: block;
    bottom: 10px;
  }

  .review-content .swiper-arrow {
    display: none !important;
  }
}

.bg-image, .ftco-cover {
  background-size: cover;
  background-repeat: no-repeat; }

.ftco-cover {
  background-position: center center; }
  .ftco-cover .ftco-heading {
    font-size: 75px;
    line-height: 1.34;
    color: #fff; }
    @media screen and (max-width: 768px) {
      .ftco-cover .ftco-heading {
        font-size: 37px;
        line-height: 1.3; } }
  .ftco-cover .ftco-subheading, .ftco-cover p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    font-family: "Raleway", sans-serif; }
  @media screen and (max-width: 768px) {
    .ftco-cover .btn {
      width: 100% !important;
      border: 1px solid red; } }
  .ftco-cover a {
    position: relative;
    color: #fff; }
    .ftco-cover a:before {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: #F96D00;
      height: 2px;
      content: " "; }
  .ftco-cover.overlay {
    position: relative; }
    .ftco-cover.overlay:before {
      content: "";
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
  .ftco-cover .ftco-vh-100 {
    min-height: 700px !important; }

    .offer_section {
      position: relative;
      padding-top: 45px;
    }
    
    .offer_section .box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 45px;
      border-radius: 5px;
      padding: 20px 15px;
      background-color: #222831;
      color: #ffffff;
    }
    
    .offer_section .box .img-box {
      width: 175px;
      min-width: 175px;
      height: 175px;
      margin-right: 15px;
      position: relative;
      -webkit-transition: all 0.1 0.5s;
      transition: all 0.1 0.5s;
      border-radius: 100%;
      border: 5px solid #ffbe33;
      overflow: hidden;
    }
    
    .offer_section .box .img-box img {
      width: 100%;
      -webkit-transition: all .2s;
      transition: all .2s;
    }
    
    .offer_section .box .detail-box h5 {
      font-family: 'Dancing Script', cursive;
      font-size: 24px;
      margin: 0;
    }
    
    .offer_section .box .detail-box h6 {
      font-family: 'Dancing Script', cursive;
      margin: 10px 0;
    }
    
    .offer_section .box .detail-box h6 span {
      font-size: 2.5rem;
      font-weight: bold;
    }
    
    .offer_section .box .detail-box a {
      display: inline-block;
      padding: 10px 30px;
      background-color: #ffbe33;
      color: #ffffff;
      border-radius: 45px;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      border: none;
    }
    
    .offer_section .box .detail-box a:hover {
      background-color: #e69c00;
    }

    .about {
      position: relative;
      width: 100%;
      padding: 45px 0;
  }
  
  .about .section-header {
      margin-bottom: 30px;
      margin-left: 0;
  }
  
  .about .about-img {
      position: relative;
  }
  
  .about .about-img img {
      position: relative;
      width: 100%;
      border-radius: 15px;
  }
  
  .about .btn-play {
      position: absolute;
      z-index: 1;
      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;
  }
  
  .about .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: #fbaf32;
      border-radius: 50%;
      animation: pulse-border 1500ms ease-out infinite;
  }
  
  .about .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: #fbaf32;
      border-radius: 50%;
      transition: all 200ms;
  }
  
  .about .btn-play img {
      position: relative;
      z-index: 3;
      max-width: 100%;
      width: auto;
      height: auto;
  }
  
  .about .btn-play span {
      display: block;
      position: relative;
      z-index: 3;
      width: 0;
      height: 0;
      border-left: 32px solid #ffffff;
      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 {
      padding-left: 17px;
  }
  
  #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;
  }
  
  .about .about-content {
      position: relative;
  }
  
  .about .about-text p {
      font-size: 16px;
  }
  
  .about .about-text a.btn {
      position: relative;
      margin-top: 15px;
  }
  
  @media (max-width: 991.98px) {
      .about .about-img {
          margin-bottom: 30px;
      }
  }
  
  .no-gutters {
    margin-right: 0;
    margin-left: 0; }
    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
      padding-right: 0;
      padding-left: 0; }
      
.services-wrap {
  width: 100%;
  display: block; }
  @media (max-width: 991.98px) {
    .services-wrap {
      margin-bottom: 30px; } }
  .services-wrap .img, .services-wrap .text {
    width: 50%;
  background-size: cover; }
  .services-wrap .img {
    display: block; }
  .services-wrap .text {
    background: rgba(0, 0, 0, 0.2);
    position: relative; }
    .services-wrap .text h3 {
      font-size: 20px; }
    .services-wrap .text .price {
      font-size: 16px;
      margin-bottom: 0; }
      .services-wrap .text .price span {
        color: #fac564; }
        .food-area {
          background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.7)), url('../images/food-bg.png') ;

          background-repeat: no-repeat;
          background-position: top right;
          position: relative;
        
      }

      .exclusive_item_part:after {
        width: 100%;
        height: 100%;
        position: absolute;
        content: "";
        bottom: -250px;
        z-index: -1;
        background:linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.5)), url(../images/about_overlay.png) bottom right no-repeat;
        right: 0px;
    }

    .themenu
    {
      width: 100%;
      background: #FFFFFF;
    }
    .themenu_title_bar_container
    {
      width: 100%;
      background: #282828;
      padding-left: 23px;
      padding-top: 22px;
      padding-bottom: 24px;
      padding-right: 22px;
    }
    .themenu_title_bar
    {
      width: 100%;
      height: 103px;
      border: solid 2px #8c7c74;
    }
    .themenu_title
    {
      font-size: 48px;
      color: #FFFFFF;
      margin-top: 14px;
    }
    .themenu_stars
    {
      position: absolute;
      top: 20px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 244px;
      background: #282828;
      font-size: 36px;
      z-index: 1;
    }
    .rating_r_5 i:first-child::before {
      content: "\f005";
  }
  .rating_r i::before {
    font-family: 'FontAwesome';
    content: "\f006";
    font-style: normal;
    font-size: 10px;
    color: #d6baa0;
}
    .themenu_rating
    {
   
display: flex;
justify-content: center;
flex-direction: row;
      background: #282828;
      z-index: 1;
    }
    .themenu_col
    {
      width: 100%;
      padding-left: 33px;
      padding-top: 39px;
      padding-right: 28px;
      padding-bottom: 44px;
      border: solid 1px #dadada;
    }
    .themenu_row
    {
      margin-top: 71px;
     
    }
    .themenu_col_title
    {
      display: inline-block;
      height: 58px;
      padding-left: 11px;
      padding-right: 16px;
      border: solid 2px #c4ab9f;
      font-size: 36px;
      line-height: 54px;
      color: #c4ab9f;
    }
    .dish_list
    {
      margin-top: 44px;
    }
    .dish:not(:last-child)
    {
      margin-bottom: 25px;
    }
    .dish_title,
    .dish_price
    {
      font-size: 18px;
      color: #ffffff;
    }
    .dish_price
    {
      margin-left: auto;
    }
    .dish_contents
    {
      margin-top: 3px;
    }
    .dish_order
    {
      margin-top: 10px;
    }
    .dish_order a
    {
      position: relative;
      font-size: 18px;
      color: #b49383;
    }
    .dish_order a::after
    {
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: #b49383;
      content: '';
      visibility: hidden;
      opacity: 0;
    }
    .dish_order a:hover::after
    {
      visibility: visible;
      opacity: 1;
    }
    