@charset "UTF-8";
body {
  color: var(--text-color);
  background-color: var(--body-background-color, #fff);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--heading-color);
}

a {
  color: var(--link-color);
  transition: color var(--transition-base, 300ms ease);
}
a:hover, a:focus {
  color: var(--link-hover-color);
}
a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.main-header {
  background-color: var(--header-background-color);
  color: var(--header-text-color);
}
.main-header .header-top {
  background-color: var(--secondary-color);
  color: var(--footer-text-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main-header .header-top a {
  color: var(--footer-text-color);
}
.main-header .header-top a:hover {
  color: var(--primary-color);
}
.main-header .header-upper {
  background-color: var(--header-background-color);
}
.main-header .header-upper .main-menu .navigation > li > a {
  color: var(--menu-text-color);
}
.main-header .header-upper .main-menu .navigation > li > a:hover, .main-header .header-upper .main-menu .navigation > li > a:focus {
  color: var(--menu-hover-color);
}
.main-header .header-upper .main-menu .navigation > li.current > a, .main-header .header-upper .main-menu .navigation > li.current-menu-item > a {
  color: var(--menu-hover-color);
}

.main-footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
}
.main-footer h1,
.main-footer h2,
.main-footer h3,
.main-footer h4,
.main-footer h5,
.main-footer h6 {
  color: var(--button-text-color);
}
.main-footer p,
.main-footer span,
.main-footer li,
.main-footer div {
  color: var(--footer-text-color);
}
.main-footer .info-col .info li {
  color: var(--footer-text-color);
}
.main-footer .info-col .info li a {
  color: var(--footer-link-color);
  transition: color var(--transition-base, 300ms ease);
}
.main-footer .info-col .info li a:hover {
  color: var(--footer-link-hover-color);
}
.main-footer .info-col .content {
  color: var(--footer-text-color);
}
.main-footer .info-col .newsletter .text {
  color: var(--footer-text-muted-color);
}
.main-footer .footer-col {
  color: var(--footer-text-color);
}
.main-footer .footer-col .footer-widget {
  color: var(--footer-text-color);
}
.main-footer .footer-col .footer-widget ul li {
  color: var(--footer-text-color);
}
.main-footer .footer-col .footer-widget ul li a {
  color: var(--footer-link-color);
  transition: color var(--transition-base, 300ms ease);
}
.main-footer .footer-col .footer-widget ul li a:hover {
  color: var(--footer-link-hover-color);
}
.main-footer a {
  color: var(--footer-link-color);
  transition: color var(--transition-base, 300ms ease);
}
.main-footer a:hover {
  color: var(--footer-link-hover-color);
}
.main-footer .footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.main-footer .footer-bottom .copyright {
  color: var(--footer-text-color);
}
.main-footer .bottom_footer p {
  color: var(--footer-text-color);
}
.main-footer .bottom_footer .copyright {
  color: var(--footer-text-color);
}
.main-footer .bottom_footer .social_media li a {
  color: var(--footer-link-color) !important;
}
.main-footer .bottom_footer .social_media li a:hover {
  color: var(--footer-link-hover-color) !important;
}

.form-control,
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
textarea,
select {
  border-color: var(--border-color);
  color: var(--text-color);
}
.form-control:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}
.form-control::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: var(--text-color);
  opacity: 0.6;
}
.form-control::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
textarea::placeholder,
select::placeholder {
  color: var(--text-color);
  opacity: 0.6;
}

table {
  border-color: var(--border-color);
}
table th {
  background-color: var(--secondary-color);
  color: var(--button-text-color);
  border-color: var(--border-color);
}
table td {
  border-color: var(--border-color);
}
table tbody tr:hover {
  background-color: rgba(var(--primary-color-rgb), 0.05);
}

.border,
.border-top,
.border-right,
.border-bottom,
.border-left {
  border-color: var(--border-color) !important;
}

.section.alternate {
  background-color: rgba(var(--primary-color-rgb), 0.05);
}

.inner-banner .bg-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.preloader {
  background-color: var(--secondary-color);
}
.preloader .spinner {
  border-color: var(--primary-color);
  border-top-color: transparent;
}

.scroll-to-top {
  background-color: var(--primary-color);
  color: var(--button-text-color);
}
.scroll-to-top:hover {
  background-color: var(--button-hover-background-color);
}

.pagination .page-link {
  color: var(--text-color);
  border-color: var(--border-color);
}
.pagination .page-link:hover {
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-color: var(--primary-color);
}
.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--button-text-color);
}
.pagination .page-item.disabled .page-link {
  color: var(--text-color);
  opacity: 0.5;
}

.badge.badge-primary {
  background-color: var(--primary-color);
  color: var(--button-text-color);
}
.badge.badge-secondary {
  background-color: var(--secondary-color);
  color: var(--button-text-color);
}

.dish-block .price {
  color: var(--primary-color);
}
.dish-block .s-info {
  background-color: var(--accent-color);
  color: var(--button-text-color);
}

.menu-list-line {
  border-bottom: 1px dotted var(--border-color);
}

.gallery-item .gallery-overlay {
  background-color: rgba(var(--secondary-color-rgb), 0.9);
}

.testimonial-block .quote-icon {
  color: var(--primary-color);
}
.testimonial-block .rating .fa-star {
  color: var(--primary-color);
}

.contact-info .icon {
  color: var(--primary-color);
}

.social-links a {
  background-color: var(--primary-color);
  color: var(--button-text-color);
}
.social-links a:hover {
  background-color: var(--button-hover-background-color);
}

.text-primary {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.border-primary {
  border-color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.border-secondary {
  border-color: var(--secondary-color);
}

.text-accent {
  color: var(--accent-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

.border-accent {
  border-color: var(--accent-color);
}

.language-switcher-wrapper .language-toggle {
  border: none !important;
  border-radius: 0 !important;
  color: var(--menu-text-color);
  background-color: transparent;
  padding: 8px 15px;
}
.language-switcher-wrapper .language-toggle:hover, .language-switcher-wrapper .language-toggle:focus {
  background-color: transparent;
  color: var(--menu-hover-color);
  border: none !important;
  box-shadow: none;
}
.language-switcher-wrapper .language-menu {
  background-color: var(--menu-background-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.language-switcher-wrapper .language-menu .language-item {
  color: var(--menu-text-color);
}
.language-switcher-wrapper .language-menu .language-item:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
}

.language-switcher-list .language-link {
  color: var(--menu-text-color);
}
.language-switcher-list .language-link:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
}

.btn-style-one .btn-wrap {
  z-index: 8;
}

.theme-btn.btn-style-one {
  text-align: center;
}

.newsletter-form .btn-style-one {
  background: var(--main-color);
  border: 2px solid var(--main-color);
}

.theme-btn:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

/* Menu View Link Button Box */
.menu-view-link-btnbox {
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

/* Reserve Section Button Styles */
.reserve-section .reserv-col form .btn-style-one {
  width: 100%;
  margin-top: 20px;
}
.reserve-section .reserv-col form .btn-style-one .btn-wrap {
  width: 100%;
  text-align: center;
  float: none;
}

/* Special Offer Section Button */
.special-offer-section .lower-link-box {
  margin-top: 30px;
}

/* About Section Button */
.about-section .lower-link-box {
  margin-top: 40px;
  margin-bottom: 80px;
}

/* Chef Section Button */
.chef-section .link-box {
  margin-top: 30px;
}

/* News Section Button */
.news-section .lower-link-box {
  margin-top: 50px;
  text-align: center;
}

.contact-page .contact-form-wrapper .contact-form {
  background: transparent;
  border: none;
  padding: 0;
}
.contact-page .contact-form-wrapper .contact-form-group {
  margin-bottom: 20px;
}
.contact-page .contact-form-wrapper .contact-form-row {
  margin: 0 -10px;
}
.contact-page .contact-form-wrapper .contact-form-row > div {
  padding: 0 10px;
}
.contact-page .contact-form-wrapper .contact-form-input,
.contact-page .contact-form-wrapper textarea {
  width: 100%;
  border-radius: 0;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--color-one);
  border: 1px solid var(--white-color-opacity-four);
  line-height: 34px;
  display: block;
  height: 56px;
  outline: none;
  transition: all 0.3s ease;
}
.contact-page .contact-form-wrapper .contact-form-input:focus,
.contact-page .contact-form-wrapper textarea:focus {
  border-color: #d4af37;
  box-shadow: none;
}
.contact-page .contact-form-wrapper textarea {
  height: auto !important;
}
.contact-page .contact-message {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
}
.contact-page .contact-success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.contact-page .contact-error-message {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.contact-page .middle-line-wrapper .middle-line-container {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 400px;
}
.contact-page .middle-line-wrapper .v-line {
  width: 2px;
  background: linear-gradient(to bottom, #d4af37, #f4d03f, #d4af37);
  flex-grow: 1;
  margin: 10px 0;
}
.contact-page .middle-line-wrapper .dot {
  width: 12px;
  height: 12px;
  background: #d4af37;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #d4af37;
}
@media (max-width: 768px) {
  .contact-page .middle-line-wrapper {
    display: none !important;
  }
}
.contact-page .loc-block.info-block .contact-image {
  margin-bottom: 30px;
}
.contact-page .loc-block.info-block .contact-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.contact-page .loc-block.info-block h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
  text-transform: capitalize;
}
.contact-page .loc-block.info-block .text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-color);
}
.contact-page .loc-block.info-block .text .c-info-ttl {
  font-weight: 600;
  color: var(--primary-color);
}
.contact-page .loc-block.info-block .text .more-link {
  font-weight: 500;
}
.contact-page .loc-block.info-block .text .more-link a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-page .loc-block.info-block .text .more-link a:hover {
  color: var(--primary-hover-color);
}
.contact-page .loc-block .form-side .title-box {
  margin-bottom: 40px;
}
.contact-page .loc-block .form-side .title-box.centered {
  text-align: center;
}
.contact-page .loc-block .form-side .title-box .subtitle {
  margin-bottom: 10px;
}
.contact-page .loc-block .form-side .title-box .subtitle span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-page .loc-block .form-side .title-box h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.contact-page .loc-block .form-side .title-box .text.desc {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact-page .loc-block.col-lg-5, .contact-page .loc-block.col-lg-6 {
    margin-bottom: 40px;
  }
}
.contact-page .c-page-form-box {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .contact-page .c-page-form-box {
    padding: 40px 0;
  }
}

.contact-form-wrapper .form-group {
  margin-bottom: 20px;
}
.contact-form-wrapper .form-group .field-inner {
  position: relative;
}
.contact-form-wrapper .form-group .field-inner input[type=text],
.contact-form-wrapper .form-group .field-inner input[type=email],
.contact-form-wrapper .form-group .field-inner input[type=tel],
.contact-form-wrapper .form-group .field-inner textarea {
  width: 100%;
  border-radius: 0;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form-wrapper .form-group .field-inner input[type=text]:focus,
.contact-form-wrapper .form-group .field-inner input[type=email]:focus,
.contact-form-wrapper .form-group .field-inner input[type=tel]:focus,
.contact-form-wrapper .form-group .field-inner textarea:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
.contact-form-wrapper .form-group .field-inner input[type=text]::-moz-placeholder, .contact-form-wrapper .form-group .field-inner input[type=email]::-moz-placeholder, .contact-form-wrapper .form-group .field-inner input[type=tel]::-moz-placeholder, .contact-form-wrapper .form-group .field-inner textarea::-moz-placeholder {
  color: #999999;
}
.contact-form-wrapper .form-group .field-inner input[type=text]::placeholder,
.contact-form-wrapper .form-group .field-inner input[type=email]::placeholder,
.contact-form-wrapper .form-group .field-inner input[type=tel]::placeholder,
.contact-form-wrapper .form-group .field-inner textarea::placeholder {
  color: #999999;
}
.contact-form-wrapper .form-group .field-inner textarea {
  height: 120px;
  resize: vertical;
}

/*** 
====================================================================
  Social Sidebars - Common styles for social links and call sections
====================================================================
***/
.banner-social-list {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.banner-social-list .line {
  width: 1px;
  height: 25px;
  background-color: var(--white-color);
}
.banner-social-list .custom-ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}
.banner-social-list .custom-ul li {
  margin: 0;
}
.banner-social-list .custom-ul li a {
  color: var(--white-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  text-decoration: none;
}
.banner-social-list .custom-ul li a:hover {
  color: var(--main-color);
}

.banner-call {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  z-index: 10;
}
.banner-call .line {
  width: 1px;
  height: 25px;
  background-color: var(--white-color);
}
.banner-call .call-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.banner-call .call-ul li {
  transform: rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
}
.banner-call .call-ul li a {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}
.banner-call .call-ul li a:hover {
  color: var(--main-color);
}

@media only screen and (max-width: 1199px) {
  .banner-social-list,
  .banner-call {
    display: none;
  }
}
body[dir=rtl] .banner-social-list {
  left: auto;
  right: 30px;
}
body[dir=rtl] .banner-call {
  right: auto;
  left: -50px;
}
body[dir=rtl] .banner-call .call-ul li {
  transform: rotate(90deg);
}

/***
====================================================================
  Scrolling Banner Section (Rolling Images Hero)
====================================================================
***/
.scrolling-banner-section {
  position: relative;
  padding: 210px 0 0 0;
}

.scrolling-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/background/hero-bg.jpg) no-repeat center center;
  background-size: cover;
  z-index: 0;
}

.scrolling-banner-section::after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  right: 0px;
  height: 200px;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-one) 100%, transparent), transparent);
  z-index: 1;
}

.scrolling-banner-section .content,
.rolling-gallery-container {
  position: relative;
  z-index: 2;
}

.scrolling-banner-section .content {
  position: relative;
  text-align: center;
  margin-bottom: 130px;
}

.scrolling-banner-section .content h1 {
  position: relative;
  margin-bottom: 15px;
}

.scrolling-banner-section .content .text {
  position: relative;
  margin-bottom: 25px;
}

.scrolling-banner-section .content .text span {
  position: relative;
  color: var(--main-color);
}

/* Rolling Gallery Styles */
.rolling-gallery-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 370px;
}

.rolling-gallery-outer {
  display: flex;
  width: 3900px;
  animation: scroll 20s linear infinite;
}

.rolling-image {
  width: 300px;
  height: 370px;
  margin-right: 30px;
}

.rolling-image:nth-child(6),
.rolling-image:nth-child(12) {
  margin-right: 30px;
}

.rolling-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 500px 500px 0 0;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1950px);
  }
}
/* Pause animation on hover */
.rolling-gallery-container:hover .rolling-gallery-outer {
  animation-play-state: paused;
}

/* Responsive Styles */
@media only screen and (max-width: 1199px) {
  .scrolling-banner-section {
    padding: 180px 0 0 0;
  }
  .scrolling-banner-section .content {
    margin-bottom: 100px;
  }
  .scrolling-banner-section .content h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .scrolling-banner-section {
    padding: 150px 0 0 0;
  }
  .scrolling-banner-section .content {
    margin-bottom: 80px;
  }
  .scrolling-banner-section .content h1 {
    font-size: 48px;
  }
  .rolling-gallery-container {
    height: 300px;
  }
  .rolling-image {
    width: 250px;
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .scrolling-banner-section {
    padding: 120px 0 0 0;
  }
  .scrolling-banner-section .content {
    margin-bottom: 60px;
  }
  .scrolling-banner-section .content h1 {
    font-size: 36px;
  }
  .scrolling-banner-section .content .text {
    font-size: 16px;
  }
  .rolling-gallery-container {
    height: 250px;
  }
  .rolling-image {
    width: 200px;
    height: 250px;
    margin-right: 20px;
  }
}
/***
====================================================================
  Banner Section (Standard Hero)
====================================================================
***/
.banner-section.banner-standard-hero {
  position: relative;
  padding: 0 0;
  background: var(--color-two);
  border-bottom: none;
}

.banner-section .bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: block;
  z-index: 1;
}

.banner-section .bottom-curve.curve-mobile {
  display: none;
}

.banner-section.banner-section .banner-container {
  position: relative;
}

.banner-section .banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-section .slide-item {
  position: relative;
  width: 100%;
  padding: 0px;
  overflow: hidden;
}

.banner-section .slide-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.banner-section .slide-item .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: all 0ms linear 0ms;
}

.banner-section .slide-item.swiper-slide-active .image-layer {
  transform: scale(1.15);
  transition: all 7000ms linear 0ms;
}

.banner-section .slide-item .image-layer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-section .slide-item .content-box {
  position: relative;
  display: table;
  vertical-align: middle;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 50px;
  height: 880px;
  min-height: 100vh;
  z-index: 10;
}

.banner-section .slide-item .content {
  position: relative;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  z-index: 5;
}

.banner-section .slide-item .inner {
  position: relative;
  display: block;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  z-index: 5;
}

.banner-section .slide-item .subtitle {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--main-color);
  font-size: 14px;
  letter-spacing: 0.4em;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}

.banner-section .swiper-slide-active .subtitle,
.banner-section .swiper-slide-active .pattern-image {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transition: all 1000ms ease 500ms;
}

.banner-section .slide-item h1 {
  position: relative;
  font-size: 120px;
  font-weight: 300;
  text-transform: none;
  line-height: 1em;
  margin: 0px 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}

.banner-section .slide-item h1 span {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.banner-section .swiper-slide-active h1 {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transition: all 1000ms ease 1000ms;
}

.banner-section .slide-item .text {
  position: relative;
  display: block;
  font-size: 20px;
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}

.banner-section .swiper-slide-active .text {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transition: all 1000ms ease 1500ms;
}

.banner-section .slide-item .links-box {
  position: relative;
  display: block;
  padding-top: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}

.banner-section .swiper-slide-active .links-box {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transition: all 1000ms ease 2000ms;
}

.banner-section .slide-item .links-box .link {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

/* Navigation Buttons */
.banner-section .swiper-button-next,
.banner-section .swiper-button-prev {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 24px;
  text-align: center;
  background: transparent;
  color: var(--main-color);
  border-radius: 0%;
  transition: all 400ms ease;
}

.banner-section .swiper-button-next span,
.banner-section .swiper-button-prev span {
  position: relative;
  z-index: 1;
}

.banner-section .swiper-button-next:after,
.banner-section .swiper-button-prev:after {
  display: none;
}

.banner-section .swiper-button-next:before,
.banner-section .swiper-button-prev:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white-color-opacity-three, rgba(255, 255, 255, 0.3));
  border-radius: 100px;
  transition: all 400ms ease;
}

.banner-section .swiper-button-next {
  right: 80px;
}

.banner-section .swiper-button-prev {
  left: 80px;
}

.banner-section .swiper-button-next:hover,
.banner-section .swiper-button-prev:hover {
  color: var(--black-color);
}

.banner-section .swiper-button-next:hover:before,
.banner-section .swiper-button-prev:hover:before {
  background: var(--main-color);
}

/* Explore Menu Badge */
.banner-section .explore-menu-btn {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 0px;
  width: 117px;
  height: 170px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/resource/menu-badge.png) no-repeat center center;
  background-size: contain;
  text-decoration: none;
}

.banner-section .explore-menu-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 40px;
  z-index: 1;
}

.banner-section .explore-menu-btn .icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  animation: bounce-down-delay 3s infinite ease-in-out;
}

@keyframes bounce-down-delay {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  10% {
    transform: translateY(10px);
    opacity: 0.6;
  }
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Social Links */
.banner-section .banner-social-list {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.banner-social-list .line {
  width: 1px;
  height: 25px;
  background-color: var(--white-color);
}

.banner-social-list .custom-ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}

.banner-social-list .custom-ul li {
  margin: 0;
}

.banner-social-list .custom-ul li a {
  color: var(--white-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.banner-social-list .custom-ul li a:hover {
  color: var(--main-color);
}

/* Call Section */
.banner-section .banner-call {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  z-index: 10;
}

.banner-call .line {
  width: 1px;
  height: 25px;
  background-color: var(--white-color);
}

.banner-call .call-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.banner-call .call-ul li {
  transform: rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
}

.banner-call .call-ul li a {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-call .call-ul li a:hover {
  color: var(--main-color);
}

/* Responsive Styles */
@media only screen and (max-width: 1400px) {
  .banner-section .slide-item h1 {
    font-size: 100px;
  }
  .banner-section .swiper-button-next {
    right: 40px;
  }
  .banner-section .swiper-button-prev {
    left: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-section .slide-item h1 {
    font-size: 80px;
  }
  .banner-section .slide-item .content-box {
    height: 700px;
  }
  .banner-section .banner-social-list,
  .banner-section .banner-call {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .banner-section .slide-item h1 {
    font-size: 60px;
  }
  .banner-section .slide-item .text {
    font-size: 18px;
  }
  .banner-section .slide-item .content-box {
    height: 600px;
    min-height: 600px;
  }
  .banner-section .swiper-button-next,
  .banner-section .swiper-button-prev {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section .slide-item h1 {
    font-size: 48px;
  }
  .banner-section .slide-item .subtitle {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  .banner-section .slide-item .text {
    font-size: 16px;
    margin-top: 20px;
  }
  .banner-section .slide-item .content-box {
    height: 500px;
    min-height: 500px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .banner-section .explore-menu-btn {
    width: 90px;
    height: 130px;
  }
  .banner-section .bottom-curve {
    display: none;
  }
  .banner-section .bottom-curve.curve-mobile {
    display: block;
    height: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-section .slide-item h1 {
    font-size: 36px;
  }
  .banner-section .slide-item .inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
/***
====================================================================
  Hero Minimal Style (Style 1)
====================================================================
***/
.banner-section-minimal .banner-container {
  position: relative;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.banner-section-minimal .banner-text-top {
  text-align: center;
  margin-bottom: 40px;
}
.banner-section-minimal .banner-text-top h1 {
  margin-bottom: 15px;
  font-size: 90px;
  font-weight: 300;
  line-height: 1em;
  padding-bottom: 10px;
}
.banner-section-minimal .banner-text-top .text {
  font-size: 20px;
  line-height: 1.6;
}
.banner-section-minimal .banner-text-top .text .theme_color {
  color: var(--main-color);
  font-weight: 500;
}
.banner-section-minimal .slider-contained {
  border-radius: 500px;
  overflow: hidden;
  margin-top: 30px;
  border: 12px solid var(--black-color-opacity, rgba(0, 0, 0, 0.1));
  box-shadow: 0 0 0 1px var(--main-color);
}
.banner-section-minimal .slider-contained .swiper-slide {
  height: 450px;
  position: relative;
}
.banner-section-minimal .slider-contained .image-layer {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.banner-section-minimal .slider-contained .swiper-button-next,
.banner-section-minimal .slider-contained .swiper-button-prev {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 24px;
  text-align: center;
  background: transparent;
  color: var(--main-color);
  border-radius: 50%;
  transition: all 400ms ease;
  z-index: 10;
}
.banner-section-minimal .slider-contained .swiper-button-next:after,
.banner-section-minimal .slider-contained .swiper-button-prev:after {
  display: none;
}
.banner-section-minimal .slider-contained .swiper-button-next span,
.banner-section-minimal .slider-contained .swiper-button-prev span {
  position: relative;
  z-index: 1;
}
.banner-section-minimal .slider-contained .swiper-button-next:before,
.banner-section-minimal .slider-contained .swiper-button-prev:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white-color-opacity-three, rgba(255, 255, 255, 0.3));
  border-radius: 50%;
  transition: all 400ms ease;
}
.banner-section-minimal .slider-contained .swiper-button-next:hover,
.banner-section-minimal .slider-contained .swiper-button-prev:hover {
  color: var(--black-color);
}
.banner-section-minimal .slider-contained .swiper-button-next:hover:before,
.banner-section-minimal .slider-contained .swiper-button-prev:hover:before {
  background: var(--main-color);
  border-color: var(--main-color);
}
.banner-section-minimal .slider-contained .swiper-button-next {
  right: 20px;
}
.banner-section-minimal .slider-contained .swiper-button-prev {
  left: 20px;
}
.banner-section-minimal .hero-info {
  padding: 30px 0;
}
.banner-section-minimal .hero-info .top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #ffffff;
}
.banner-section-minimal .hero-info .top-bar-content .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.banner-section-minimal .hero-info .top-bar-content .info-item .label {
  font-weight: 600;
  color: var(--main-color);
}
.banner-section-minimal .hero-info .top-bar-content .contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-section-minimal .hero-info .top-bar-content .contact-info-item .icon {
  font-size: 18px;
  color: var(--main-color);
}
.banner-section-minimal .hero-info .top-bar-content .contact-info-item span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.banner-section-minimal .hero-info .top-bar-content .separator {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section-minimal .hero-info .top-bar-content .separator img {
  max-width: 100%;
  height: auto;
}
.banner-section-minimal .book-btn {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 117px;
  height: 117px;
  z-index: 10;
  animation: pulse-animate 3s infinite;
  transition: all 400ms ease;
}
.banner-section-minimal .book-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 100%;
  animation: bubble-animation 4s infinite;
}
.banner-section-minimal .book-btn .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-section-minimal .book-btn .icon img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 1199px) {
  .banner-section-minimal .banner-text-top h1 {
    font-size: 70px;
  }
  .banner-section-minimal .slider-contained .swiper-slide {
    height: 400px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-section-minimal .banner-container {
    padding: 100px 0 60px;
  }
  .banner-section-minimal .banner-text-top h1 {
    font-size: 56px;
  }
  .banner-section-minimal .slider-contained {
    margin-top: 20px;
    border-width: 8px;
  }
  .banner-section-minimal .slider-contained .swiper-slide {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section-minimal .banner-text-top {
    margin-bottom: 30px;
  }
  .banner-section-minimal .banner-text-top h1 {
    font-size: 42px;
  }
  .banner-section-minimal .banner-text-top .text {
    font-size: 18px;
  }
  .banner-section-minimal .slider-contained {
    border-radius: 200px;
    border-width: 6px;
  }
  .banner-section-minimal .slider-contained .swiper-slide {
    height: 280px;
  }
  .banner-section-minimal .hero-info .top-bar-content {
    flex-direction: column;
  }
  .banner-section-minimal .hero-info .top-bar-content .separator {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .banner-section-minimal .banner-text-top h1 {
    font-size: 32px;
  }
  .banner-section-minimal .slider-contained .swiper-slide {
    height: 220px;
  }
}

@keyframes pulse-animate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bubble-animation {
  0% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
}
/***
====================================================================
  Hero Video Style (Style 3)
====================================================================
***/
.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url(../images/background/video_bg.jpg) no-repeat center center/cover;
}
.bg-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.bg-video-wrap .overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.bg-video-wrap .auto-container {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  width: 100%;
}
.bg-video-wrap .content-box {
  position: relative;
  display: table;
  vertical-align: middle;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 50px;
  height: 880px;
  min-height: 100vh;
  z-index: 10;
}
.bg-video-wrap .content {
  position: relative;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  z-index: 5;
}
.bg-video-wrap .inner {
  position: relative;
  display: block;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  z-index: 5;
}
.bg-video-wrap .subtitle {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--main-color);
  font-size: 12px;
  letter-spacing: 0.4em;
  margin-bottom: 10px;
  transform: translateY(30px);
  transition: all 1000ms ease 500ms;
}
.bg-video-wrap .pattern-image {
  position: relative;
  width: 100px;
  margin: 0 auto;
  transform: translateY(30px);
  transition: all 1000ms ease 500ms;
}
.bg-video-wrap h1 {
  position: relative;
  font-size: 85px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1em;
  margin: 0px 0px;
  transform: translateY(30px);
  transition: all 1000ms ease 1000ms;
}
.bg-video-wrap h1 span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-family: var(--font-family-HVMuellerhoff, "Herr Von Muellerhoff"), cursive;
  font-size: 200px;
  text-transform: none;
  line-height: 0.6;
}
.bg-video-wrap .text {
  position: relative;
  display: block;
  font-size: 20px;
  margin-top: 10px;
  transform: translateY(30px);
  transition: all 1000ms ease 1500ms;
}
.bg-video-wrap .links-box {
  position: relative;
  display: block;
  padding-top: 40px;
  transform: translateY(30px);
  transition: all 1000ms ease 2000ms;
}
.bg-video-wrap.animated .subtitle,
.bg-video-wrap.animated .pattern-image,
.bg-video-wrap.animated h1,
.bg-video-wrap.animated .text,
.bg-video-wrap.animated .links-box {
  transform: translate(0);
}
.bg-video-wrap .book-btn {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 141px;
  height: 141px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/resource/book-badge.png) no-repeat center center;
  background-size: contain;
  text-decoration: none;
}
.bg-video-wrap .book-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 141px;
  height: 141px;
  background: url(../images/resource/book-badge.png) no-repeat center center;
  background-size: contain;
  z-index: 0;
}
.bg-video-wrap .book-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83px;
  height: 83px;
  z-index: 1;
}
.bg-video-wrap .book-btn .icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.bg-video-wrap .banner-social-list {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.bg-video-wrap .banner-social-list .line {
  width: 1px;
  height: 25px;
  background-color: var(--white-color);
}
.bg-video-wrap .banner-social-list .custom-ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}
.bg-video-wrap .banner-social-list .custom-ul li {
  margin: 0;
}
.bg-video-wrap .banner-social-list .custom-ul li a {
  color: var(--white-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.bg-video-wrap .banner-social-list .custom-ul li a:hover {
  color: var(--main-color);
}
.bg-video-wrap .banner-call {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  z-index: 10;
}
.bg-video-wrap .banner-call .line {
  width: 1px;
  height: 25px;
  background-color: var(--white-color);
}
.bg-video-wrap .banner-call .call-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bg-video-wrap .banner-call .call-ul li {
  transform: rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
}
.bg-video-wrap .banner-call .call-ul li a {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}
.bg-video-wrap .banner-call .call-ul li a:hover {
  color: var(--main-color);
}
@media only screen and (max-width: 1199px) {
  .bg-video-wrap h1 {
    font-size: 100px;
  }
  .bg-video-wrap h1 span {
    font-size: 180px;
  }
  .bg-video-wrap .book-btn {
    right: 30px;
    bottom: 30px;
  }
  .bg-video-wrap .banner-social-list,
  .bg-video-wrap .banner-call {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .bg-video-wrap h1 {
    font-size: 80px;
  }
  .bg-video-wrap h1 span {
    font-size: 140px;
  }
  .bg-video-wrap .content-box {
    height: 700px;
    padding-top: 100px;
  }
  .bg-video-wrap .book-btn {
    width: 110px;
    height: 110px;
  }
  .bg-video-wrap .book-btn .icon {
    width: 65px;
    height: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .bg-video-wrap h1 {
    font-size: 56px;
  }
  .bg-video-wrap h1 span {
    font-size: 100px;
  }
  .bg-video-wrap .subtitle {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .bg-video-wrap .text {
    font-size: 18px;
  }
  .bg-video-wrap .content-box {
    height: 600px;
    min-height: 600px;
  }
  .bg-video-wrap .book-btn {
    width: 90px;
    height: 90px;
    right: 20px;
    bottom: 20px;
  }
  .bg-video-wrap .book-btn .icon {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .bg-video-wrap h1 {
    font-size: 42px;
  }
  .bg-video-wrap h1 span {
    font-size: 70px;
  }
  .bg-video-wrap .text {
    font-size: 16px;
    padding: 0 20px;
  }
  .bg-video-wrap .inner {
    padding: 0 15px;
  }
}

/*** 
====================================================================
  Hero Category Style (Style 4)
====================================================================
***/
.hero-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-section {
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
  background: var(--black-color);
}

.hero-col {
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-right: 1px solid var(--white-color-opacity-two, rgba(255, 255, 255, 0.2));
  transition: flex 0.5s ease-in-out;
}
.hero-col:last-child {
  border-right: none;
}
.hero-col:hover {
  flex: 1.5;
}
.hero-col:hover .hero-bg {
  transform: scale(1.1);
}
.hero-col:hover .hero-content {
  opacity: 1;
  transform: translateY(0);
}
.hero-col:hover .hero-button {
  opacity: 1;
  transform: translateY(0);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-in-out;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  text-align: center;
  color: var(--white-color);
  z-index: 2;
  width: 90%;
  max-width: 300px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.hero-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-content h3 a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero-content h3 a:hover {
  color: var(--main-color);
}
.hero-content .category-text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero-button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease-in-out 0.1s;
}

.lower-link-box {
  text-align: center;
}
.lower-link-box .theme-btn {
  display: inline-block;
}

.category-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.category-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@media only screen and (max-width: 1199px) {
  .hero-content h3 {
    font-size: 30px;
  }
  .hero-content .category-text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section {
    flex-direction: column;
    height: auto;
  }
  .hero-col {
    height: 400px;
    border-right: none;
    border-bottom: 1px solid var(--white-color-opacity-two);
  }
  .hero-col:last-child {
    border-bottom: none;
  }
  .hero-col:hover {
    flex: 1;
  }
  .hero-col .hero-content {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .hero-col .hero-button {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .hero-content {
    bottom: 60px;
  }
  .hero-content h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-col {
    height: 350px;
  }
  .hero-content {
    bottom: 50px;
    width: 85%;
  }
  .hero-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .hero-content .category-text {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .category-icon {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }
  .category-icon img {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-col {
    height: 300px;
  }
  .hero-content h3 {
    font-size: 20px;
  }
  .hero-content .category-text {
    display: none;
  }
  .hero-button {
    bottom: 20px;
  }
  .hero-button .theme-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
/***
====================================================================
  Gallery Section Styles
====================================================================
***/
.gallery-section {
  position: relative;
  padding: 120px 0 100px;
}
.gallery-section .gallery-block {
  margin-bottom: 30px;
}
.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-section .gallery-item .gallery-image {
  position: relative;
  overflow: hidden;
}
.gallery-section .gallery-item .gallery-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.gallery-section .gallery-item .gallery-image .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-section .gallery-item .gallery-image .gallery-overlay .gallery-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.gallery-section .gallery-item .gallery-image .gallery-overlay .gallery-content .gallery-name-backdrop .gallery-name {
  margin: 0;
  font-size: 20px;
}
.gallery-section .gallery-item .gallery-image .gallery-overlay .gallery-content .icon {
  font-size: 36px;
  color: var(--main-color);
}
.gallery-section .gallery-item .gallery-image:hover img {
  transform: scale(1.1);
}
.gallery-section .gallery-item .gallery-image:hover .gallery-overlay {
  opacity: 1;
}
.gallery-section .gallery-item .gallery-image:hover .gallery-overlay .gallery-content {
  transform: translateY(0);
}

.image-gallery {
  position: relative;
  padding: 120px 0 100px;
}
.image-gallery .carousel-box {
  position: relative;
}
.image-gallery .image-gallery-slider {
  position: relative;
  margin: 0 -15px;
}
.image-gallery .image-gallery-slider .gallery-block {
  padding: 0 15px;
}
.image-gallery .image-gallery-slider .gallery-block .image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.image-gallery .image-gallery-slider .gallery-block .image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.image-gallery .image-gallery-slider .gallery-block .image .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.05);
}
.image-gallery .image-gallery-slider .gallery-block .image .gallery-overlay .gallery-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.image-gallery .image-gallery-slider .gallery-block .image .gallery-overlay .gallery-content .gallery-name-backdrop .gallery-name {
  margin: 0;
  font-size: 20px;
}
.image-gallery .image-gallery-slider .gallery-block .image:hover img {
  transform: scale(1.05);
}
.image-gallery .image-gallery-slider .gallery-block .image:hover .gallery-overlay {
  opacity: 1;
}
.image-gallery .image-gallery-slider .gallery-block .image:hover .gallery-overlay .gallery-content {
  transform: translateY(0);
}
.image-gallery .image-gallery-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}
.image-gallery .image-gallery-slider .owl-nav .owl-prev,
.image-gallery .image-gallery-slider .owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.3s ease;
  font-size: 18px;
}
.image-gallery .image-gallery-slider .owl-nav .owl-prev:hover,
.image-gallery .image-gallery-slider .owl-nav .owl-next:hover {
  background: var(--color-one);
}
.image-gallery .image-gallery-slider .owl-nav .owl-prev {
  left: -60px;
}
.image-gallery .image-gallery-slider .owl-nav .owl-next {
  right: -60px;
}
@media (max-width: 1199px) {
  .image-gallery .image-gallery-slider .owl-nav .owl-prev {
    left: 10px;
  }
  .image-gallery .image-gallery-slider .owl-nav .owl-next {
    right: 10px;
  }
}

.gallery-page {
  position: relative;
  padding: 120px 0 100px;
}
.gallery-page .masonry {
  margin: 0 -15px;
}
.gallery-page .masonry .masonry-item {
  padding: 15px;
  width: 33.333%;
}
.gallery-page .masonry .masonry-item.masonry-item-small {
  width: 25%;
}
.gallery-page .masonry .masonry-item.masonry-item-medium {
  width: 33.333%;
}
.gallery-page .masonry .masonry-item.masonry-item-large {
  width: 41.666%;
}
.gallery-page .masonry .masonry-item .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-page .masonry .masonry-item .image-box figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.gallery-page .masonry .masonry-item .image-box figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-page .masonry .masonry-item .image-box figure .overlay-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-page .masonry .masonry-item .image-box figure .overlay-box .icon {
  font-size: 36px;
  color: var(--main-color);
  transform: scale(0);
  transition: transform 0.3s ease;
}
.gallery-page .masonry .masonry-item .image-box figure:hover img {
  transform: scale(1.1);
}
.gallery-page .masonry .masonry-item .image-box figure:hover .overlay-box {
  opacity: 1;
}
.gallery-page .masonry .masonry-item .image-box figure:hover .overlay-box .icon {
  transform: scale(1);
}
@media (max-width: 991px) {
  .gallery-page .masonry .masonry-item {
    width: 50% !important;
  }
  .gallery-page .masonry .masonry-item.masonry-item-small, .gallery-page .masonry .masonry-item.masonry-item-medium, .gallery-page .masonry .masonry-item.masonry-item-large {
    width: 50% !important;
  }
}
@media (max-width: 575px) {
  .gallery-page .masonry .masonry-item {
    width: 100% !important;
  }
  .gallery-page .masonry .masonry-item.masonry-item-small, .gallery-page .masonry .masonry-item.masonry-item-medium, .gallery-page .masonry .masonry-item.masonry-item-large {
    width: 100% !important;
  }
}

.instagram-section {
  position: relative;
  padding: 120px 0 0;
}
.instagram-section .instagram-handle {
  margin-top: 20px;
}
.instagram-section .instagram-handle a {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.instagram-section .instagram-handle a i {
  margin-right: 8px;
  font-size: 20px;
}
.instagram-section .instagram-handle a:hover {
  color: var(--color-one);
}
.instagram-section .instagram-gallery {
  margin-top: 50px;
  overflow: hidden;
}
.instagram-section .instagram-gallery .instagram-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2px;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item {
  width: 12.5%;
  padding: 2px;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box {
  position: relative;
  overflow: hidden;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box .image {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(64, 93, 230, 0.8), rgba(131, 58, 180, 0.8), rgba(253, 29, 29, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box .image .overlay .overlay-inner {
  text-align: center;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box .image .overlay .overlay-inner .icons {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box .image .overlay .overlay-inner .caption {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 0 10px;
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box .image:hover img {
  transform: scale(1.1);
}
.instagram-section .instagram-gallery .instagram-row .instagram-item .inner-box .image:hover .overlay {
  opacity: 1;
}
@media (max-width: 1199px) {
  .instagram-section .instagram-gallery .instagram-row .instagram-item {
    width: 16.666%;
  }
}
@media (max-width: 991px) {
  .instagram-section .instagram-gallery .instagram-row .instagram-item {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .instagram-section .instagram-gallery .instagram-row .instagram-item {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .instagram-section .instagram-gallery .instagram-row .instagram-item {
    width: 33.333%;
  }
}

.image-gallery-style-2.image-gallery {
  padding: 100px 0;
}
.image-gallery-style-2.image-gallery .image-gallery-slider {
  position: static;
  margin: 0;
}
.image-gallery-style-2.image-gallery .image-gallery-slider .gallery-block {
  padding: 0;
}
.image-gallery-style-2.image-gallery .image-gallery-slider .gallery-block .image {
  border-radius: 0;
  margin: 0;
  min-width: 0;
  display: inline;
  text-align: unset;
}
.image-gallery-style-2.image-gallery .owl-nav .owl-prev {
  left: 15px;
}
.image-gallery-style-2.image-gallery .owl-nav .owl-next {
  right: 60px;
}
.image-gallery-style-2.image-gallery .owl-nav .owl-next, .image-gallery-style-2.image-gallery .owl-nav .owl-prev {
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 24px;
  text-align: center;
  background: transparent !important;
  color: var(--main-color);
  border-radius: 0%;
  transition: all 400ms ease;
}

.menu-cat {
  position: relative;
  background-color: var(--color-two);
}
.menu-cat .menucat-list {
  display: flex;
  position: relative;
  width: 100%;
  border-top: solid 1px var(--white-color-opacity-four);
  padding: 40px 0;
  transition: background 1s ease-in-out, padding 0.5s ease-in-out;
  background-size: 0;
  background-position: center;
  background-repeat: no-repeat;
}
.menu-cat .menucat-list:last-child {
  border-top: solid 1px var(--white-color-opacity-four);
  border-bottom: solid 1px var(--white-color-opacity-four);
}
.menu-cat .menucat-list .data-colom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 50px;
}
.menu-cat .menucat-list .data-colom .star {
  width: 14px;
  height: 14px;
  align-items: center;
  display: flex;
}
.menu-cat .menucat-list .image-box img {
  border-radius: 300px;
  max-height: 98px;
}
.menu-cat .menucat-list .title-box {
  position: relative;
  padding-bottom: 0;
}
.menu-cat .menucat-list .title-box h3 {
  position: relative;
  font-size: 80px;
  text-transform: uppercase;
  text-align: right;
}
.menu-cat .menucat-list .arrow-btn {
  position: relative;
  text-align: right;
  flex-shrink: 0;
}
.menu-cat .menucat-list .arrow-btn a {
  position: relative;
  color: var(--main-color);
  font-size: 50px;
  line-height: 80px;
  text-align: center;
  border-radius: 200px;
  border: solid 1px var(--white-color-opacity-three);
  padding: 10px;
  width: 100px;
  height: 100px;
  display: inline-block;
}
.menu-cat .menucat-list:hover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.menu-cat .menucat-list:hover .image-box {
  display: none;
}
.menu-cat .menucat-list:hover .data-colom {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
.menu-cat .menucat-list:hover .title-box {
  text-align: left;
}
.menu-cat .menucat-list:hover .arrow-btn a {
  color: var(--black-color);
  background: var(--main-color);
  border: solid 1px var(--main-color);
  transform: rotate(315deg);
}
.menu-cat .menucat-list.menubg:hover {
  background: var(--bg-image, url(../images/background/menu-bg-paper.jpg)) no-repeat center;
  background-size: cover;
}

@media only screen and (max-width: 1199px) {
  .menu-cat .menucat-list .title-box h3 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .menu-cat .menucat-list .title-box h3 {
    font-size: 50px;
  }
  .menu-cat .menucat-list .arrow-btn a {
    width: 80px;
    height: 80px;
    font-size: 40px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-cat .menucat-list {
    padding: 30px 0;
  }
  .menu-cat .menucat-list:hover {
    padding: 60px 0;
  }
  .menu-cat .menucat-list .data-colom {
    gap: 30px;
  }
  .menu-cat .menucat-list .data-colom:hover {
    padding: 0 20px;
  }
  .menu-cat .menucat-list .title-box h3 {
    font-size: 40px;
  }
  .menu-cat .menucat-list .arrow-btn a {
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .menu-cat .menucat-list .title-box h3 {
    font-size: 30px;
  }
  .menu-cat .menucat-list .image-box img {
    max-width: 60px;
  }
}
.special-dish-slider .inner {
  background: url(../images/resource/pattern-dark.png) repeat;
  padding: 100px 0;
}
.special-dish-slider .dish-gallery-slider .offer-block-two {
  max-width: 350px;
  width: auto;
  margin: 0 auto;
}
.special-dish-slider .dish-gallery-slider .offer-block-two.margin-top {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .special-dish-slider .dish-gallery-slider .offer-block-two.margin-top {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .special-dish-slider .dish-gallery-slider .offer-block-two.margin-top {
    margin-top: 0;
  }
}
.special-dish-slider .dish-gallery-slider .offer-block-two .inner-box {
  position: relative;
  display: block;
  text-align: center;
  border-radius: unset;
  border: none;
  padding: 0;
}
.special-dish-slider .dish-gallery-slider .offer-block-two .inner-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
}
.special-dish-slider .dish-gallery-slider .offer-block-two .inner-box .image img {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
.special-dish-slider .dish-gallery-slider .owl-dots {
  text-align: center;
  padding-top: 30px;
}
.special-dish-slider .dish-gallery-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-color-opacity-three);
  margin: 0 5px;
  transition: all 0.3s ease;
}
.special-dish-slider .dish-gallery-slider .owl-dots .owl-dot.active {
  background: var(--main-color);
  width: 30px;
  border-radius: 5px;
}
.special-dish-slider .title-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%) rotate(-90deg);
  transform-origin: center center;
  z-index: 100;
}
@media only screen and (max-width: 991px) {
  .special-dish-slider .title-wrapper {
    display: none;
  }
}
.special-dish-slider .special-title {
  background: var(--color-two);
  border: solid 1px var(--white-color-opacity-three);
  padding: 0 30px;
  margin: 0;
}
.special-dish-slider .special-title h2 {
  font-size: 60px;
  padding-bottom: 10px;
}
.special-dish-slider .title-box.onlyfor-sm {
  display: none;
}
@media only screen and (max-width: 991px) {
  .special-dish-slider .title-box.onlyfor-sm {
    display: block;
    margin-bottom: 40px;
  }
}
.special-dish-slider .special-offer {
  background: none;
}

:root {
  --tc-body-font-family: var(--primary-font);
  --tc-heading-font-family: var(--heading-font, var(--font-family-Fraunces));
  --tc-display-font-family: var(--heading-font, var(--font-family-Fraunces));
  --tc-body-font-size: var(--tc-body-font-size, 16px);
  --tc-fs-1: 40px;
  --tc-fs-2: 32px;
  --tc-fs-3: 28px;
  --tc-fs-4: 24px;
  --tc-fs-5: 20px;
  --tc-fs-6: 16px;
  --tc-fs-7: 14px;
  --tc-fs-8: 12px;
  --tc-fs-9: 10px;
  --tc-ds-1: 80px;
  --tc-ds-2: 72px;
  --tc-ds-3: 64px;
  --tc-ds-4: 56px;
  --tc-ds-5: 48px;
  --tc-ds-6: 40px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-round: 50%;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body {
  font-family: var(--tc-body-font-family);
  font-size: var(--tc-body-font-size);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.theme_color {
  color: var(--main-color);
  font-weight: 500;
}

h1,
.h1 {
  font-family: var(--tc-heading-font-family);
  font-size: var(--tc-h1-font-size);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
  letter-spacing: normal;
}

h2,
.h2 {
  font-family: var(--tc-heading-font-family);
  font-size: var(--tc-h2-font-size);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
  letter-spacing: normal;
}

h3,
.h3 {
  font-family: var(--tc-heading-font-family);
  font-size: var(--tc-h3-font-size);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
  letter-spacing: normal;
}

h4,
.h4 {
  font-family: var(--tc-heading-font-family);
  font-size: var(--tc-h4-font-size);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
  letter-spacing: normal;
}

h5,
.h5 {
  font-family: var(--tc-heading-font-family);
  font-size: var(--tc-h5-font-size);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
  letter-spacing: normal;
}

h6,
.h6 {
  font-family: var(--tc-heading-font-family);
  font-size: var(--tc-h6-font-size);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
  letter-spacing: normal;
}

.reservation-form .form-group {
  position: relative;
  margin-bottom: var(--spacing-md);
}
.reservation-form .form-group .field-inner {
  position: relative;
}
.reservation-form .form-group .field-inner .invalid-feedback {
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 10;
  font-size: var(--tc-fs-8);
  color: #dc3545;
  box-shadow: var(--shadow-sm);
  text-align: left;
  animation: fadeInError var(--transition-fast);
}
.reservation-form .form-group.has-error, .reservation-form .form-group:has(.invalid-feedback[style*="display: block"]) {
  margin-bottom: calc(var(--spacing-md) + 20px);
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-partial .newsletter-form .subscribe-form .input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0 !important;
}
.footer-partial .newsletter-form .subscribe-form .input-group::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  z-index: 5;
  pointer-events: none;
}
.footer-partial .newsletter-form .subscribe-form .input-group input[type=email] {
  flex: 1;
  padding: 15px 15px 15px 45px;
  border: none;
  border-radius: 0;
  background: #fff;
  color: var(--text-color);
  font-size: 14px;
  height: auto;
}
.footer-partial .newsletter-form .subscribe-form .input-group input[type=email]::-moz-placeholder {
  color: #999;
}
.footer-partial .newsletter-form .subscribe-form .input-group input[type=email]::placeholder {
  color: #999;
}
.footer-partial .newsletter-form .subscribe-form .input-group input[type=email]:focus {
  outline: none;
  box-shadow: none;
}
.footer-partial .newsletter-form .subscribe-form .input-group .btn.theme-btn {
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  flex-shrink: 0;
}
.footer-partial .newsletter-form .subscribe-form .input-group .btn.theme-btn.btn-primary {
  background: none;
  border: none;
  color: inherit;
}
.footer-partial .newsletter-form .subscribe-form .input-group .btn.theme-btn.btn-primary:hover, .footer-partial .newsletter-form .subscribe-form .input-group .btn.theme-btn.btn-primary:focus {
  background: none;
  border: none;
  box-shadow: none;
}
.footer-partial .newsletter-form .subscribe-form .newsletter-message {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
}
.footer-partial .newsletter-form .subscribe-form .newsletter-message.newsletter-success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.footer-partial .newsletter-form .subscribe-form .newsletter-message.newsletter-error-message {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.footer-col .newsletter-form form .form-group {
  position: relative;
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}
.footer-col .newsletter-form form .form-group .alt-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  z-index: 5;
  pointer-events: none;
}
.footer-col .newsletter-form form .form-group input[type=email] {
  flex: 1;
  padding: 15px 15px 15px 45px;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #333;
  font-size: 14px;
  height: auto;
}
.footer-col .newsletter-form form .form-group input[type=email]::-moz-placeholder {
  color: #999;
}
.footer-col .newsletter-form form .form-group input[type=email]::placeholder {
  color: #999;
}
.footer-col .newsletter-form form .form-group input[type=email]:focus {
  outline: none;
  box-shadow: none;
}
.footer-col .newsletter-form form .form-group .theme-btn {
  flex-shrink: 0;
}
.footer-col .newsletter-form form .alert {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
}
.footer-col .newsletter-form form .alert.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.footer-col .newsletter-form form .alert.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.blog-post .blog-post-image {
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
}
.blog-post .blog-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-post .blog-post-image:hover img {
  transform: scale(1.05);
}
.blog-post .post-meta {
  font-size: var(--tc-fs-7);
  color: var(--color-three);
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}
.blog-post .post-meta a {
  color: var(--main-color);
  text-decoration: none;
  transition: color var(--transition-base);
}
.blog-post .post-meta a:hover {
  text-decoration: underline;
}
.blog-post .post-title {
  margin-bottom: var(--spacing-sm);
}
.blog-post .post-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color var(--transition-base);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-post .post-title a:hover {
  color: var(--main-color);
}
.blog-post .post-excerpt {
  color: var(--text-color);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-post .read-more {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}
.blog-post .read-more i {
  transition: transform var(--transition-base);
}
.blog-post .read-more:hover {
  text-decoration: underline;
}
.blog-post .read-more:hover i {
  transform: translateX(5px);
}

.blog-post-list {
  border-bottom: 1px solid var(--color-four);
  padding-bottom: 30px;
}
.blog-post-list:last-child {
  border-bottom: none;
}

.section-blog-7 {
  padding: 80px 0;
}
.section-blog-7 .ds-3 {
  font-family: var(--tc-heading-font-family);
  color: var(--heading-color);
}

.gallery-section {
  padding: var(--spacing-xxl) 0;
}
.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base);
}
.gallery-section .gallery-item:hover {
  box-shadow: var(--shadow-lg);
}
.gallery-section .gallery-item .gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-section .gallery-item .gallery-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-section .gallery-item .gallery-image .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.gallery-section .gallery-item .gallery-image .gallery-overlay .gallery-content {
  text-align: center;
  color: #fff;
  padding: var(--spacing-md);
  transform: translateY(20px);
  transition: transform var(--transition-base);
}
.gallery-section .gallery-item .gallery-image .gallery-overlay .gallery-content .gallery-title {
  font-family: var(--tc-heading-font-family);
  font-size: var(--tc-fs-4);
  margin-bottom: var(--spacing-xs);
  color: #fff;
}
.gallery-section .gallery-item .gallery-image .gallery-overlay .gallery-content .gallery-description {
  font-size: var(--tc-fs-7);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}
.gallery-section .gallery-item .gallery-image:hover img {
  transform: scale(1.1);
}
.gallery-section .gallery-item .gallery-image:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}
.gallery-section .gallery-item .gallery-image:hover .gallery-overlay .gallery-content {
  transform: translateY(0);
}

@media (max-width: 768px) {
  :root {
    --tc-h1-font-size: clamp(1.75rem, 5vw, 2.5rem);
    --tc-h2-font-size: clamp(1.5rem, 4vw, 2rem);
    --tc-h3-font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    --tc-h4-font-size: clamp(1.125rem, 3vw, 1.5rem);
    --tc-h5-font-size: clamp(1rem, 2.5vw, 1.25rem);
    --tc-h6-font-size: clamp(0.875rem, 2vw, 1rem);
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
  }
}
.newsletter-popup .modal-content {
  border: none !important;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.newsletter-popup .newsletter-popup-bg {
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.newsletter-popup .newsletter-popup-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsletter-popup .newsletter-popup-content {
  padding: 60px 50px;
  background: var(--color-two);
  position: relative;
  flex: 1;
}
.newsletter-popup .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 10;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.newsletter-popup .btn-close:before {
  content: "×";
  font-size: 24px;
  line-height: 1;
}
.newsletter-popup .btn-close:hover {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(90deg);
}
.newsletter-popup .modal-subtitle {
  font-family: var(--primary-font);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.newsletter-popup .modal-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 1px;
  background: var(--primary-color);
}
.newsletter-popup .modal-title {
  font-size: 26px !important;
}
.newsletter-popup .modal-text {
  color: var(--text-color) !important;
}
.newsletter-popup .bb-newsletter-popup-form {
  margin-top: 0;
}
.newsletter-popup .form-label {
  color: var(--text-color) !important;
}
.newsletter-popup .form-control {
  background-color: var(--color-one);
  border: 1px solid var(--white-color-opacity-four);
  border-radius: 0;
  color: var(--text-color);
  display: block;
  font-size: 14px;
  font-weight: 400;
  height: 56px;
  line-height: 34px;
  outline: none;
  padding: 15px 20px;
  transition: all 0.3s ease;
  width: 100%;
}
.newsletter-popup .form-control:focus {
  border-color: #d4af37;
  box-shadow: none;
}
.newsletter-popup .form-check {
  margin-top: 20px;
}
.newsletter-popup .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.newsletter-popup .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.newsletter-popup .form-check-label {
  color: var(--text-color) !important;
}
.newsletter-popup .btn-primary {
  background: var(--main-color);
  border: 2px solid var(--main-color);
  color: var(--black-color);
  border-radius: 0 !important;
  font-weight: 700;
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 12px 35px;
  font-size: 12px;
  overflow: hidden;
  transition: all 0.3s ease 0s;
  margin-top: 25px;
}
.newsletter-popup .btn-primary:hover {
  background: var(--color-two);
  color: var(--white-color);
}
.newsletter-popup .btn-primary span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
@media (max-width: 767px) {
  .newsletter-popup .newsletter-popup-content {
    padding: 40px 30px;
  }
  .newsletter-popup .modal-title {
    font-size: 22px !important;
  }
  .newsletter-popup .modal-text {
    font-size: 15px;
  }
  .newsletter-popup .btn-primary,
  .newsletter-popup .theme-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

[data-bs-theme=dark] .newsletter-popup .newsletter-popup-content {
  background: #1e1e1e;
}
[data-bs-theme=dark] .newsletter-popup .modal-title {
  color: #fff;
}
[data-bs-theme=dark] .newsletter-popup .modal-text {
  color: rgba(255, 255, 255, 0.7);
}
[data-bs-theme=dark] .newsletter-popup .form-control {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
[data-bs-theme=dark] .newsletter-popup .form-control:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
}
[data-bs-theme=dark] .newsletter-popup .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
[data-bs-theme=dark] .newsletter-popup .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
[data-bs-theme=dark] .newsletter-popup .form-label {
  color: #fff;
}
[data-bs-theme=dark] .newsletter-popup .form-check-label {
  color: rgba(255, 255, 255, 0.7);
}
[data-bs-theme=dark] .newsletter-popup .btn-close {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
[data-bs-theme=dark] .newsletter-popup .btn-close:hover {
  background: var(--primary-color);
  color: #fff;
}

.subscribe-form .alert,
.reservation-form .alert {
  margin-top: 15px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  padding: 12px 16px;
}
.subscribe-form .alert.alert-success,
.reservation-form .alert.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
.subscribe-form .alert.alert-danger,
.reservation-form .alert.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
.subscribe-form .alert .btn-close,
.reservation-form .alert .btn-close {
  background: none;
  color: inherit;
  opacity: 0.7;
}
.subscribe-form .alert .btn-close:hover,
.reservation-form .alert .btn-close:hover {
  opacity: 1;
}
.subscribe-form input.error,
.subscribe-form select.error,
.subscribe-form textarea.error,
.reservation-form input.error,
.reservation-form select.error,
.reservation-form textarea.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}
.subscribe-form button[type=submit]:disabled,
.reservation-form button[type=submit]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fob-comment-item-info .fob-comment-item-author {
  font-size: 14px !important;
}

.fob-comment-form-section {
  margin-top: 50px !important;
}
.fob-comment-form-section .fob-comment-title {
  font-family: var(--tc-heading-font-family) !important;
  font-size: 32px !important;
  margin-bottom: 15px !important;
  position: relative;
  padding-bottom: 20px;
  font-weight: 600 !important;
}
.fob-comment-form-section .fob-comment-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--main-color);
}
.fob-comment-form-section .fob-comment-form-note {
  color: var(--white-color-opacity-two) !important;
  font-size: 15px !important;
  margin-bottom: 35px !important;
  line-height: 1.6;
}
.fob-comment-form-section .cancel-comment-reply-link {
  display: inline-block;
  color: #dc3545 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  margin-left: 15px !important;
  transition: all 0.3s ease;
}
.fob-comment-form-section .cancel-comment-reply-link:hover {
  text-decoration: underline !important;
  color: #c82333 !important;
}
.fob-comment-form-section form label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--white-color-opacity-two) !important;
  margin-bottom: 10px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  font-family: var(--tc-body-font-family);
}
.fob-comment-form-section form label.required:after {
  content: " *" !important;
  color: #dc3545 !important;
}
.fob-comment-form-section form input[type=text],
.fob-comment-form-section form input[type=email],
.fob-comment-form-section form input[type=url],
.fob-comment-form-section form textarea {
  position: relative;
  display: block;
  height: 56px;
  width: 100%;
  font-size: 16px;
  color: var(--text-color);
  line-height: 34px;
  font-weight: 400;
  padding: 10px 20px;
  background-color: var(--color-one);
  border: 1px solid var(--white-color-opacity-four);
  border-radius: 0px;
  transition: all 300ms ease;
}
.fob-comment-form-section form input[type=text]:focus,
.fob-comment-form-section form input[type=email]:focus,
.fob-comment-form-section form input[type=url]:focus,
.fob-comment-form-section form textarea:focus {
  border-color: var(--main-color);
  background-color: var(--color-one);
  box-shadow: none;
}
.fob-comment-form-section form input[type=text]::-moz-placeholder, .fob-comment-form-section form input[type=email]::-moz-placeholder, .fob-comment-form-section form input[type=url]::-moz-placeholder, .fob-comment-form-section form textarea::-moz-placeholder {
  color: #999;
  font-size: 14px;
}
.fob-comment-form-section form input[type=text]::placeholder,
.fob-comment-form-section form input[type=email]::placeholder,
.fob-comment-form-section form input[type=url]::placeholder,
.fob-comment-form-section form textarea::placeholder {
  color: #999;
  font-size: 14px;
}
.fob-comment-form-section form textarea {
  min-height: 150px;
  resize: vertical;
}
.fob-comment-form-section form .invalid-feedback {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #dc3545;
}
.fob-comment-form-section button[type=submit] {
  background: var(--main-color);
  color: #ffffff;
  border: 2px solid var(--main-color);
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--tc-body-font-family);
  border-radius: 0;
}
.fob-comment-form-section button[type=submit]:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #222;
  transition: all 0.3s ease;
  z-index: -1;
}
.fob-comment-form-section button[type=submit]:hover {
  color: #ffffff;
  border-color: #222;
}
.fob-comment-form-section button[type=submit]:hover:before {
  left: 0;
}
.fob-comment-form-section button[type=submit]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fob-comment-form-section .alert {
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 0;
  border: none;
  font-size: 14px;
}
.fob-comment-form-section .alert.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}
.fob-comment-form-section .alert.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.fob-comment-list-wrapper.loading,
.fob-comment-form-section.loading {
  position: relative;
}
.fob-comment-list-wrapper.loading:before,
.fob-comment-form-section.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.fob-comment-list-wrapper.loading:after,
.fob-comment-form-section.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--main-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .fob-comment-list-section,
  .fob-comment-form-section {
    margin-top: 40px;
    padding-top: 40px;
  }
  .fob-comment-list-section .fob-comment-title,
  .fob-comment-form-section .fob-comment-title {
    font-size: 26px !important;
    margin-bottom: 30px !important;
  }
  .fob-comment-list-section .fob-comment-item .fob-comment-item-avatar {
    margin-right: 15px;
  }
  .fob-comment-list-section .fob-comment-item .fob-comment-item-avatar img {
    width: 50px !important;
    height: 50px !important;
    border-width: 2px;
  }
  .fob-comment-list-section .fob-comment-item .fob-comment-item-author {
    font-size: 16px !important;
  }
  .fob-comment-list-section .fob-comment-item .fob-comment-list {
    margin-left: 20px !important;
  }
  .fob-comment-list-section .fob-comment-item .fob-comment-list .fob-comment-item {
    padding-left: 20px;
  }
  .fob-comment-form-section form button[type=submit] {
    padding: 12px 30px;
    font-size: 13px;
  }
}
[data-bs-theme=dark] .fob-comment-list-section,
[data-bs-theme=dark] .fob-comment-form-section {
  border-top-color: rgba(255, 255, 255, 0.1);
}
[data-bs-theme=dark] .fob-comment-list-section .fob-comment-title,
[data-bs-theme=dark] .fob-comment-list-section .fob-comment-item-author {
  color: #fff !important;
}
[data-bs-theme=dark] .fob-comment-list-section .fob-comment-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
[data-bs-theme=dark] .fob-comment-list-section .fob-comment-item .fob-comment-item-avatar img {
  border-color: rgba(255, 255, 255, 0.1);
}
[data-bs-theme=dark] .fob-comment-list-section .fob-comment-item .fob-comment-item-body p {
  color: rgba(255, 255, 255, 0.7);
}
[data-bs-theme=dark] .fob-comment-list-section .fob-comment-item .fob-comment-item-pending {
  background: rgba(243, 156, 18, 0.2);
  color: #ffc107 !important;
}
[data-bs-theme=dark] .fob-comment-list-section .fob-comment-item .fob-comment-list .fob-comment-item {
  border-left-color: var(--main-color);
}
[data-bs-theme=dark] .fob-comment-form-section .fob-comment-title {
  color: #fff !important;
}
[data-bs-theme=dark] .fob-comment-form-section .fob-comment-form-note {
  color: rgba(255, 255, 255, 0.7) !important;
}
[data-bs-theme=dark] .fob-comment-form-section form label {
  color: #fff !important;
}
[data-bs-theme=dark] .fob-comment-form-section form input,
[data-bs-theme=dark] .fob-comment-form-section form textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
[data-bs-theme=dark] .fob-comment-form-section form input:focus,
[data-bs-theme=dark] .fob-comment-form-section form textarea:focus {
  border-color: var(--main-color) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
[data-bs-theme=dark] .fob-comment-form-section form input::-moz-placeholder, [data-bs-theme=dark] .fob-comment-form-section form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
[data-bs-theme=dark] .fob-comment-form-section form input::placeholder,
[data-bs-theme=dark] .fob-comment-form-section form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 0.5rem !important;
}
.pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.pagination .page-item.disabled .page-link {
  background-color: #f5f5f5;
  border-color: #e8e8e8;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.pagination .page-item.disabled .page-link svg path {
  stroke: #999;
}
.pagination .page-item.active .page-link {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}
.pagination .page-item.active .page-link:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.pagination .page-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  min-width: 45px;
  min-height: 45px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  transition: all 0.3s ease;
  font-family: var(--tc-body-font-family);
}
.pagination .page-link:hover {
  color: var(--main-color);
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--main-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.pagination .page-link:hover svg path {
  stroke: var(--main-color);
}
.pagination .page-link:focus {
  box-shadow: none;
  outline: none;
}
.pagination .page-link svg {
  width: 22px;
  height: 22px;
}
.pagination .page-link svg path {
  stroke: #111827;
  transition: stroke 0.3s ease;
}

.pagination-restoria {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}
.pagination-restoria .page-item {
  margin: 0 5px;
}
.pagination-restoria .page-item.active .page-link,
.pagination-restoria .page-item .page-link {
  border: none;
  background: none;
  padding: 0;
  min-width: auto;
  min-height: auto;
}
.pagination-restoria .page-item.active .page-link:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
}
.pagination-restoria .page-item.dots .page-link {
  pointer-events: none;
  color: #999;
}
.pagination-restoria .page-link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #999;
  padding: 5px 10px;
  font-family: var(--tc-heading-font-family);
}
.pagination-restoria .page-link:hover {
  color: var(--main-color);
  background: none;
  transform: none;
  box-shadow: none;
}

.blog-pagination {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #f0f0f0;
}
.blog-pagination .pagination {
  margin: 0;
}

.load-more-wrapper {
  text-align: center;
  margin: 50px 0;
}
.load-more-wrapper .load-more-btn {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  border: 2px solid var(--main-color);
  padding: 15px 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--tc-body-font-family);
  text-decoration: none;
}
.load-more-wrapper .load-more-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #222;
  transition: all 0.3s ease;
  z-index: -1;
}
.load-more-wrapper .load-more-btn:hover {
  color: #fff;
  border-color: #222;
}
.load-more-wrapper .load-more-btn:hover:before {
  left: 0;
}
.load-more-wrapper .load-more-btn:disabled, .load-more-wrapper .load-more-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.load-more-wrapper .load-more-btn:disabled:hover, .load-more-wrapper .load-more-btn.loading:hover {
  border-color: var(--main-color);
}
.load-more-wrapper .load-more-btn:disabled:hover:before, .load-more-wrapper .load-more-btn.loading:hover:before {
  left: -100%;
}
.load-more-wrapper .load-more-btn.loading:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .pagination {
    margin: 30px 0;
  }
  .pagination .page-link {
    padding: 10px 14px;
    min-width: 40px;
    min-height: 40px;
    font-size: 13px;
  }
  .pagination .page-link svg {
    width: 18px;
    height: 18px;
  }
  .pagination-restoria .page-link {
    font-size: 14px;
    padding: 5px 8px;
  }
  .load-more-wrapper .load-more-btn {
    padding: 12px 40px;
    font-size: 13px;
  }
}
[data-bs-theme=dark] .pagination .page-item.disabled .page-link {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}
[data-bs-theme=dark] .pagination .page-item.disabled .page-link svg path {
  stroke: rgba(255, 255, 255, 0.4);
}
[data-bs-theme=dark] .pagination .page-item.active .page-link {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
[data-bs-theme=dark] .pagination .page-link {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
[data-bs-theme=dark] .pagination .page-link:hover {
  background-color: rgba(212, 175, 55, 0.2);
  border-color: var(--main-color);
  color: var(--main-color);
}
[data-bs-theme=dark] .pagination .page-link:hover svg path {
  stroke: var(--main-color);
}
[data-bs-theme=dark] .pagination .page-link svg path {
  stroke: rgba(255, 255, 255, 0.8);
}
[data-bs-theme=dark] .blog-pagination {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.menu-card-style-section {
  position: relative;
}
.menu-card-style-section .menu-card-main {
  position: relative;
}
.menu-card-style-section .menu-card-main .menu-card-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0.8;
}
.menu-card-style-section .menu-card-main .menu-card-corner.top-left {
  top: 0;
  left: 0;
}
.menu-card-style-section .menu-card-main .menu-card-corner.top-right {
  top: 0;
  right: 0;
}
.menu-card-style-section .menu-card-main .menu-card-corner.bottom-left {
  bottom: 0;
  left: 0;
}
.menu-card-style-section .menu-card-main .menu-card-corner.bottom-right {
  bottom: 0;
  right: 0;
}
.menu-card-style-section .menu-card-style .image-col .inner .image {
  border-radius: 10px;
  overflow: hidden;
}
.menu-card-style-section .menu-card-style .image-col .inner .image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card-style-section .menu-card-style .image-col .inner .image:hover img {
  transform: scale(1.05);
}
.menu-card-style-section .menu-card-style .menu-col .inner .view-more-link {
  margin-top: 30px;
  text-align: center;
}
.menu-card-style-section .menu-card-style .menu-col .inner .view-more-link .theme-btn {
  display: inline-block;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.menu-card-style-section .menu-card-style .menu-col .inner .view-more-link .theme-btn:hover {
  transform: translateX(5px);
}
.menu-card-style-section .menu-card-style .menu-col .inner .view-more-link .theme-btn i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.menu-card-style-section .menu-card-style .menu-col .inner .view-more-link .theme-btn:hover i {
  margin-left: 10px;
}

.menu-page-section .inner-banner {
  margin-bottom: 60px;
}
.menu-page-section .menu-items-list .menu-item-block {
  margin-bottom: 40px;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .image-box {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .image-box:hover img {
  transform: scale(1.1);
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .image-box .featured-badge,
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .image-box .discount-badge {
  position: absolute;
  top: 20px;
  padding: 5px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .image-box .featured-badge {
  left: 20px;
  background: #ff6b6b;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .image-box .discount-badge {
  right: 20px;
  background: #4caf50;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .dish-title {
  flex: 1;
  margin: 0;
  padding-right: 20px;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .dish-title a {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 22px;
  font-family: var(--tc-heading-font-family);
  transition: color 0.3s ease;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .dish-title a:hover {
  color: var(--main-color);
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .price-box {
  text-align: right;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .price-box .price,
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .price-box .sale-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--main-color);
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .price-box .original-price {
  display: block;
  text-decoration: line-through;
  color: #999;
  font-size: 18px;
  margin-bottom: 5px;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta .dietary-tags {
  display: flex;
  gap: 10px;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta .dietary-tags .dietary-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta .dietary-tags .dietary-badge.vegetarian {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta .dietary-tags .dietary-badge.vegan {
  background: rgba(139, 195, 74, 0.1);
  color: #8bc34a;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta .dietary-tags .dietary-badge.gluten-free {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta .dietary-tags .dietary-badge i {
  font-size: 14px;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta .calories-info {
  font-size: 14px;
  color: #666;
}
.menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .dish-meta .calories-info i {
  color: #ff6b6b;
  margin-right: 5px;
}
.menu-page-section .empty-state {
  text-align: center;
  padding: 80px 0;
}
.menu-page-section .empty-state .inner i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 30px;
  display: block;
}
.menu-page-section .empty-state .inner h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--heading-color);
}
.menu-page-section .empty-state .inner p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.menu-detail-section {
  padding: 80px 0;
}
.menu-detail-section .menu-item-detail .menu-item-header {
  margin-bottom: 40px;
}
.menu-detail-section .menu-item-detail .menu-item-header .subtitle {
  margin-bottom: 15px;
}
.menu-detail-section .menu-item-detail .menu-item-header .subtitle span a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.menu-detail-section .menu-item-detail .menu-item-header .subtitle span a:hover {
  text-decoration: underline;
}
.menu-detail-section .menu-item-detail .menu-item-header h1 {
  font-size: 48px;
  margin-bottom: 0;
  font-family: var(--tc-heading-font-family);
}
.menu-detail-section .menu-item-detail .menu-item-header h1 .s-info {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 25px;
  margin-left: 15px;
  text-transform: uppercase;
  font-weight: 600;
  vertical-align: middle;
}
.menu-detail-section .menu-item-detail .menu-item-image {
  margin-bottom: 40px;
}
.menu-detail-section .menu-item-detail .menu-item-image .image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.menu-detail-section .menu-item-detail .menu-item-image .image img {
  width: 100%;
  height: auto;
}
.menu-detail-section .menu-item-detail .menu-item-image .image .discount-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #4caf50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
}
.menu-detail-section .menu-item-detail .menu-item-content .info-row {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.menu-detail-section .menu-item-detail .menu-item-content .info-row .price-info h4,
.menu-detail-section .menu-item-detail .menu-item-content .info-row .calories-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #666;
}
.menu-detail-section .menu-item-detail .menu-item-content .info-row .price-info .price,
.menu-detail-section .menu-item-detail .menu-item-content .info-row .price-info .sale-price,
.menu-detail-section .menu-item-detail .menu-item-content .info-row .calories-info .price,
.menu-detail-section .menu-item-detail .menu-item-content .info-row .calories-info .sale-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--main-color);
}
.menu-detail-section .menu-item-detail .menu-item-content .info-row .price-info .original-price,
.menu-detail-section .menu-item-detail .menu-item-content .info-row .calories-info .original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 24px;
  margin-right: 10px;
}
.menu-detail-section .menu-item-detail .menu-item-content .info-row .price-info span,
.menu-detail-section .menu-item-detail .menu-item-content .info-row .calories-info span {
  font-size: 24px;
  color: #333;
}
.menu-detail-section .menu-item-detail .menu-item-content .info-row .price-info span i,
.menu-detail-section .menu-item-detail .menu-item-content .info-row .calories-info span i {
  color: #ff6b6b;
  margin-right: 5px;
}
.menu-detail-section .menu-item-detail .menu-item-content .description-box,
.menu-detail-section .menu-item-detail .menu-item-content .ingredients-box {
  margin-bottom: 40px;
}
.menu-detail-section .menu-item-detail .menu-item-content .description-box h3,
.menu-detail-section .menu-item-detail .menu-item-content .ingredients-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--tc-heading-font-family);
  position: relative;
  padding-bottom: 15px;
}
.menu-detail-section .menu-item-detail .menu-item-content .description-box h3:after,
.menu-detail-section .menu-item-detail .menu-item-content .ingredients-box h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--main-color);
}
.menu-detail-section .menu-item-detail .menu-item-content .description-box p,
.menu-detail-section .menu-item-detail .menu-item-content .ingredients-box p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info {
  margin-bottom: 40px;
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info h4 {
  font-size: 20px;
  margin-bottom: 20px;
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info .dietary-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info .dietary-badges .dietary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info .dietary-badges .dietary-badge.vegetarian {
  background: #4caf50;
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info .dietary-badges .dietary-badge.vegan {
  background: #8bc34a;
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info .dietary-badges .dietary-badge.gluten-free {
  background: #ff9800;
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info .dietary-badges .dietary-badge i {
  font-size: 18px;
}
.menu-detail-section .menu-item-detail .menu-item-content .dietary-info .dietary-badges .no-dietary {
  color: #666;
  font-style: italic;
}
.menu-detail-section .menu-item-detail .menu-item-content .share-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.menu-detail-section .sidebar-widget {
  background: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 30px;
}
.menu-detail-section .sidebar-widget .widget-inner {
  padding: 30px;
}
.menu-detail-section .sidebar-widget .widget-inner .icon-box {
  text-align: center;
  margin-bottom: 20px;
}
.menu-detail-section .sidebar-widget .widget-inner .icon-box .icon {
  font-size: 48px;
  color: var(--main-color);
}
.menu-detail-section .sidebar-widget .widget-inner h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: var(--tc-heading-font-family);
}
.menu-detail-section .sidebar-widget .widget-inner .text {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}
.menu-detail-section .sidebar-widget .widget-inner .phone {
  text-align: center;
  margin-bottom: 20px;
}
.menu-detail-section .sidebar-widget .widget-inner .phone a {
  display: inline-block;
  font-size: 20px;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
}
.menu-detail-section .sidebar-widget .widget-inner .phone a i {
  margin-right: 10px;
}
.menu-detail-section .sidebar-widget .widget-inner .phone a:hover {
  text-decoration: underline;
}
.menu-detail-section .sidebar-widget.opening-hours .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-detail-section .sidebar-widget.opening-hours .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}
.menu-detail-section .sidebar-widget.opening-hours .hours-list li:last-child {
  border-bottom: none;
}
.menu-detail-section .sidebar-widget.opening-hours .hours-list li .day {
  font-weight: 500;
  color: #333;
}
.menu-detail-section .sidebar-widget.opening-hours .hours-list li .time {
  color: var(--main-color);
  font-weight: 600;
}
.menu-detail-section .sidebar-widget.related-items .related-items-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.menu-detail-section .sidebar-widget.related-items .related-items-list li {
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
}
.menu-detail-section .sidebar-widget.related-items .related-items-list li:last-child {
  border-bottom: none;
}
.menu-detail-section .sidebar-widget.related-items .related-items-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-detail-section .sidebar-widget.related-items .related-items-list li a .item-name {
  color: #333;
  font-weight: 500;
}
.menu-detail-section .sidebar-widget.related-items .related-items-list li a .item-price {
  color: var(--main-color);
  font-weight: 600;
}
.menu-detail-section .sidebar-widget.related-items .related-items-list li a:hover .item-name {
  color: var(--main-color);
}
.menu-detail-section .sidebar-widget.related-items .view-all {
  display: inline-block;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.menu-detail-section .sidebar-widget.related-items .view-all:hover {
  transform: translateX(5px);
}
.menu-detail-section .sidebar-widget.related-items .view-all i {
  margin-left: 5px;
}
.menu-detail-section .related-dishes {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #f0f0f0;
}
.menu-detail-section .related-dishes .dish-block-two {
  margin-bottom: 30px;
}
.menu-detail-section .related-dishes .dish-block-two .inner-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.menu-detail-section .related-dishes .dish-block-two .inner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .image {
  height: 200px;
  overflow: hidden;
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .image:hover img {
  transform: scale(1.1);
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .lower-content {
  padding: 25px;
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .lower-content h4 {
  margin-bottom: 10px;
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .lower-content h4 a {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .lower-content h4 a:hover {
  color: var(--main-color);
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .lower-content .price {
  font-size: 22px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 10px;
}
.menu-detail-section .related-dishes .dish-block-two .inner-box .lower-content .text {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.6;
}

.language-switcher-wrapper {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
}
.language-switcher-wrapper .language-dropdown {
  position: relative;
}
.language-switcher-wrapper .language-dropdown .language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 8px 15px;
  border-radius: 0;
  color: var(--menu-text-color, #222);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.language-switcher-wrapper .language-dropdown .language-toggle img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}
.language-switcher-wrapper .language-dropdown .language-toggle .lang-name {
  color: inherit;
}
.language-switcher-wrapper .language-dropdown .language-toggle i {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.language-switcher-wrapper .language-dropdown .language-toggle:hover {
  background: transparent;
  color: var(--menu-hover-color, var(--primary-color));
}
.language-switcher-wrapper .language-dropdown .language-toggle[aria-expanded=true] i {
  transform: rotate(180deg);
}
.language-switcher-wrapper .language-dropdown .language-menu {
  position: absolute;
  left: auto;
  right: 0;
  top: 100%;
  min-width: 180px;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  background: var(--color-two, #1e1e1e);
  border: none;
  border-radius: 0;
  box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
  transform: translateY(20px);
  transition: all 300ms ease;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.language-switcher-wrapper .language-dropdown .language-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 500ms ease;
}
.language-switcher-wrapper .language-dropdown .language-menu li {
  position: relative;
  margin-bottom: 10px;
  padding: 0;
}
.language-switcher-wrapper .language-dropdown .language-menu li:last-child {
  margin-bottom: 0;
}
.language-switcher-wrapper .language-dropdown .language-menu li .language-item {
  position: relative;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: var(--white-color, #fff);
  text-transform: capitalize;
  text-decoration: none;
  transition: all 300ms ease;
}
.language-switcher-wrapper .language-dropdown .language-menu li .language-item img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.language-switcher-wrapper .language-dropdown .language-menu li .language-item:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -6px;
  height: 12px;
  width: 12px;
  background-size: contain;
  background: url(../images/icons/star-element.svg) no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.language-switcher-wrapper .language-dropdown .language-menu li .language-item:hover {
  color: var(--main-color, #d4af37);
  padding-left: 35px;
}
.language-switcher-wrapper .language-dropdown .language-menu li .language-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.gallery-page .gallery-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}
.gallery-page .masonry-gallery {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: 0 auto;
}
.gallery-page .masonry-gallery .masonry-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-page .masonry-gallery .masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.gallery-page .masonry-gallery .masonry-item:hover img {
  transform: scale(1.05);
}
.gallery-page .masonry-gallery .masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .gallery-page .masonry-gallery {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 575px) {
  .gallery-page .masonry-gallery {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.galleries-list-page .section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}
.galleries-list-page .galleries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
@media (max-width: 767px) {
  .galleries-list-page .galleries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.galleries-list-page .gallery-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.galleries-list-page .gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.galleries-list-page .gallery-card:hover .gallery-thumbnail img {
  transform: scale(1.1);
}
.galleries-list-page .gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}
.galleries-list-page .gallery-card .gallery-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.galleries-list-page .gallery-card .gallery-thumbnail {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f5f5f5;
}
.galleries-list-page .gallery-card .gallery-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.galleries-list-page .gallery-card .gallery-thumbnail .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.galleries-list-page .gallery-card .gallery-thumbnail .gallery-overlay .overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.galleries-list-page .gallery-card .gallery-thumbnail .gallery-overlay .overlay-content .view-gallery {
  display: inline-block;
  padding: 12px 30px;
  background: var(--main-color);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.galleries-list-page .gallery-card .gallery-thumbnail .gallery-overlay .overlay-content .view-gallery i {
  margin-right: 8px;
  font-size: 16px;
}
.galleries-list-page .gallery-card .gallery-thumbnail:hover .overlay-content {
  transform: translateY(0);
}
.galleries-list-page .gallery-card .gallery-thumbnail .image-count {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.galleries-list-page .gallery-card .gallery-thumbnail .image-count i {
  margin-right: 5px;
}
.galleries-list-page .gallery-card .gallery-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.galleries-list-page .gallery-card .gallery-info .gallery-title {
  margin: 0 0 15px;
  font-size: 24px;
  font-family: var(--tc-heading-font-family);
}
.galleries-list-page .gallery-card .gallery-info .gallery-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.galleries-list-page .gallery-card .gallery-info .gallery-title a:hover {
  color: var(--main-color);
}
.galleries-list-page .gallery-card .gallery-info .gallery-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.galleries-list-page .gallery-card .gallery-info .gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #c7c7c7;
  font-size: 14px;
  color: #c7c7c7;
}
.galleries-list-page .gallery-card .gallery-info .gallery-meta span {
  display: flex;
  align-items: center;
}
.galleries-list-page .gallery-card .gallery-info .gallery-meta span i {
  margin-right: 6px;
  color: var(--main-color);
}
.galleries-list-page .no-galleries-found {
  background: #fff;
  border-radius: 12px;
  padding: 60px 30px;
}
.galleries-list-page .no-galleries-found h3 {
  font-family: var(--tc-heading-font-family);
  color: var(--heading-color);
  margin-bottom: 10px;
}
.galleries-list-page .no-galleries-found p {
  font-size: 16px;
}
.galleries-list-page .galleries-pagination {
  display: flex;
  justify-content: center;
}

.fancybox-caption {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 14px;
}

.language-switcher-list {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}
.language-switcher-list .language-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.language-switcher-list .language-link img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}
.language-switcher-list .language-link .lang-name {
  font-weight: 500;
}
.language-switcher-list .language-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--main-color);
}

.header-upper .links-box .language-switcher-wrapper .language-toggle {
  color: var(--menu-text-color, #333);
  border: none;
}
.header-upper .links-box .language-switcher-wrapper .language-toggle:hover {
  background: transparent;
  color: var(--menu-hover-color, var(--primary-color));
}
.header-upper .links-box .language-switcher-list .language-link {
  color: #333;
}
.header-upper .links-box .language-switcher-list .language-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--main-color);
}

@media (max-width: 991px) {
  .main-header .header-upper .language-switcher-wrapper {
    display: none;
  }
}
@media (max-width: 768px) {
  .hidden-bar .mobile-language-switcher {
    text-align: center;
    margin-bottom: 30px;
  }
  .hidden-bar .mobile-language-switcher h5 {
    color: var(--white-color);
    margin-bottom: 15px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .hidden-bar .mobile-language-switcher h5::before, .hidden-bar .mobile-language-switcher h5::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../images/icons/star-element.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
  }
  .hidden-bar .mobile-language-switcher .language-active {
    color: var(--main-color);
    font-weight: 600;
  }
  .hidden-bar .mobile-language-switcher .language-active img {
    margin-right: 5px;
  }
  .hidden-bar .mobile-language-switcher .language-link {
    color: var(--white-color);
    transition: color 0.3s ease;
  }
  .hidden-bar .mobile-language-switcher .language-link img {
    margin-right: 5px;
  }
  .hidden-bar .mobile-language-switcher .language-link:hover {
    color: var(--main-color);
    text-decoration: none;
  }
  .hidden-bar .currency-switcher {
    text-align: center;
    margin-top: 30px;
  }
  .hidden-bar .currency-switcher h5 {
    color: var(--white-color);
    margin-bottom: 15px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .hidden-bar .currency-switcher h5::before, .hidden-bar .currency-switcher h5::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../images/icons/star-element.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
  }
  .hidden-bar .currency-switcher .currency-active {
    color: var(--main-color);
    font-weight: 600;
  }
  .hidden-bar .currency-switcher .currency-link {
    color: var(--white-color);
    transition: color 0.3s ease;
  }
  .hidden-bar .currency-switcher .currency-link:hover {
    color: var(--main-color);
    text-decoration: none;
  }
  .language-switcher-wrapper {
    margin-left: 10px;
  }
  .language-switcher-wrapper .language-dropdown .language-toggle {
    padding: 6px 12px;
    font-size: 13px;
  }
  .language-switcher-wrapper .language-dropdown .language-toggle .lang-name {
    display: none;
  }
  .language-switcher-wrapper .language-dropdown .language-menu {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }
  .language-switcher-wrapper .language-dropdown .language-menu.show {
    transform: translateX(-50%) translateY(0);
  }
  .language-switcher-list {
    margin-left: 10px;
    gap: 10px;
  }
  .language-switcher-list .language-link {
    padding: 4px 8px;
    font-size: 13px;
  }
  .language-switcher-list .language-link .lang-name {
    display: none;
  }
}
@media (max-width: 991px) {
  .menu-card-style .menu-col .inner {
    padding: 30px 20px;
  }
  .menu-card-style .image-col .inner .image {
    height: 300px;
  }
  .menu-detail-section .menu-item-header h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .menu-card-style.alternate .row {
    flex-direction: column;
  }
  .menu-card-style .menu-col .inner {
    padding: 30px 15px;
  }
  .menu-card-style .menu-col .inner .title-box h3 {
    font-size: 28px;
  }
  .menu-card-style .image-col {
    margin-bottom: 30px;
  }
  .menu-card-style .image-col .inner .image {
    height: 250px;
  }
  .menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box {
    padding: 20px;
  }
  .menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .dish-title {
    padding-right: 0;
    margin-bottom: 10px;
  }
  .menu-page-section .menu-items-list .menu-item-block .dish-block.style-two .content-box .title-row .price-box {
    text-align: left;
  }
  .menu-detail-section .sidebar-column {
    margin-top: 40px;
  }
}
.show-admin-bar .main-header,
.show-admin-bar .fixed-header.header-down {
  top: 40px;
}

.main-menu .navigation > li {
  padding: 28px 0px;
}

.main-header .info-btn {
  color: var(--header-text-color);
  padding-top: 0;
}
.main-header .info-btn .hamburger .top-bun,
.main-header .info-btn .hamburger .meat,
.main-header .info-btn .hamburger .bottom-bun {
  background-color: var(--header-text-color);
}
.main-header .info-btn:hover .hamburger .top-bun,
.main-header .info-btn:hover .hamburger .meat,
.main-header .info-btn:hover .hamburger .bottom-bun {
  background-color: var(--primary-color);
}

.google-map-iframe {
  margin-bottom: 0 !important;
}

.bg-text {
  font-family: var(--font-family-Herrvon);
  position: absolute;
  opacity: 0.04;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
}

.we-offer-section .bg-text {
  font-size: 730px;
  line-height: 0.5em;
}

.btn-style-one:hover .btn-title {
  color: var(--white-color);
  z-index: 7;
  position: relative;
}

.fluid-section .chef-bio-style-2 .inner {
  position: relative;
  display: block;
  padding: 150px 20px;
}

.why-us-two {
  background-color: var(--color-two);
}

.testimonials-section-style-3 {
  background: var(--color-one);
}
.testimonials-section-style-3 .carousel-col {
  position: relative;
  border: solid 1px var(--main-color);
  border-radius: 0 200px 0 0;
  background: rgba(21, 44, 41, 0.7);
  padding: 80px;
  z-index: 100;
}
.testimonials-section-style-3 .carousel-box {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-section-style-3 .testi-top {
  position: relative;
  text-align: center;
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
}
.testimonials-section-style-3 .testi-top .quote-text {
  position: relative;
  line-height: 1.6em;
  font-size: 20px;
}
.testimonials-section-style-3 .thumbs-carousel-box {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 40px;
}
.testimonials-section-style-3 .testi-thumbs {
  position: relative;
  max-width: 130px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-section-style-3 .testi-thumbs .owl-stage-outer {
  overflow: visible;
}
.testimonials-section-style-3 .testi-thumbs .image {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 15px;
  transform: scale(0.8);
  cursor: pointer;
  border-radius: 50%;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.testimonials-section-style-3 .testi-thumbs .image img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 50%;
}
.testimonials-section-style-3 .testi-thumbs .active .image {
  transform: scale(1);
  border: solid 2px var(--main-color);
}
.testimonials-section-style-3 .testi-thumbs .auth-title {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--main-color);
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.testimonials-section-style-3 .testi-thumbs .active .auth-title {
  opacity: 1;
  visibility: visible;
}
.testimonials-section-style-3 .owl-theme .owl-nav,
.testimonials-section-style-3 .owl-theme .owl-dots {
  display: none;
}
.testimonials-section-style-3 .row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.testimonials-section-style-3 .auto-container {
  max-width: 1600px;
}
.testimonials-section-style-3 .carousel-img-col {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%; /* Adjust this to control overlap */
  z-index: 1;
  padding: 0;
}
.testimonials-section-style-3 .carousel-img-col img {
  width: 100%;
  border-radius: 200px 0 0 0;
}
.testimonials-section-style-3 .carousel-img-col .carousel-image {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.testimonials-section-style-3 .carousel-img-col .carousel-image .image-layer {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 200px 0 0 0;
}
.testimonials-section-style-3 .carousel-img-col .carousel-image .image-layer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-kt-2 {
  background-color: var(--color-two);
}

.newsletter-popup .modal-dialog .modal-content .newsletter-popup-content form button {
  border-radius: 0 !important;
}

.hero-wrapper {
  position: relative;
  overflow: hidden;
}

section {
  position: relative;
  z-index: 99;
}

.hero-section.hero-section-style-4 {
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
  background: var(--black-color);
}
.hero-section.hero-section-style-4 .hero-col {
  flex: 1 !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-right: 1px solid var(--white-color-opacity-two); /* Add this line */
}
.hero-section.hero-section-style-4 .hero-col:last-child {
  border-right: none; /* Remove right border on last column */
}
.hero-section.hero-section-style-4 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.6s ease-in-out, opacity 0.4s ease-in-out;
}
.hero-section.hero-section-style-4 .hero-col:hover .hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  transform: scale(1.05); /* Zoom effect */
  opacity: 1; /* Fully visible */
  transition: transform 0.6s ease-in-out, opacity 0.4s ease-in-out;
}
.hero-section.hero-section-style-4 .hero-col:hover .hero-bg {
  opacity: 0;
  animation: fadeZoomIn 0.6s ease forwards;
}
.hero-section.hero-section-style-4 {
  /* Bring hovered column above others */
}
.hero-section.hero-section-style-4 .hero-col:hover {
  z-index: 10;
}
.hero-section.hero-section-style-4 {
  /* Always-visible titles on top */
}
.hero-section.hero-section-style-4 .hero-titles {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  z-index: 20;
  pointer-events: none;
}
.hero-section.hero-section-style-4 .hero-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-Fraunces);
  font-size: 60px;
  font-weight: normal;
  color: var(--white-color);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: normal;
  text-shadow: 1px 1px 0 #000, 2px 2px 3px rgba(0, 0, 0, 0.7);
}
.hero-section.hero-section-style-4 .vertical-line {
  width: 1px;
  background-color: var(--white-color-opacity-two);
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 50; /* higher than hovered image */
}
.hero-section.hero-section-style-4 .vertical-line:nth-of-type(2) {
  left: 33.33%;
}
.hero-section.hero-section-style-4 .vertical-line:nth-of-type(4) {
  left: 66.66%;
}
.hero-section.hero-section-style-4 .hero-button {
  position: absolute;
  top: 60%;
  left: 50%;
  bottom: unset;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 15;
  pointer-events: auto;
}
.hero-section.hero-section-style-4 .hero-col:hover .hero-button {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.cta-section {
  position: relative;
}
.cta-section .book-btn {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 141px;
  height: 141px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/resource/book-badge.png) no-repeat center center;
  background-size: contain;
  text-decoration: none;
}

.currency-switcher .currency-active {
  color: var(--main-color) !important;
  font-weight: 500;
}
.currency-switcher .currency-link {
  transition: color 0.3s;
}
.currency-switcher .currency-link:hover {
  color: var(--main-color) !important;
}

.info-bar .social_media {
  justify-content: center;
  display: flex;
}
.info-bar .social_media li a {
  display: block;
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 34px;
  font-size: 15px;
  color: var(--white-color);
  border: 1px solid var(--color-four);
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.4s all;
}
.info-bar .social_media li a:hover {
  background-color: var(--main-color);
  color: var(--color-one);
}

.ui-widget.ui-widget-content.ui-datepicker {
  z-index: 999 !important;
}

.google-map-iframe iframe {
  width: 100%;
}

.main-header .main-box .logo-box .logo img {
  height: auto;
}
