*,
*::before,
*::after {
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

input, select, textarea {
  margin: 0;
  font-family: inherit;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
    color: #333;
    font-weight: 400;
    background-color: white;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(51, 51, 51, 0);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.left-side ul li {
padding-bottom:5px;}

.cta {

}

a {
    color: #e5c37e;
}
a:hover {
  color: #eed7a8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.flex-grow-1 {
  flex-grow: 1;
}

.grecaptcha-badge {
  visibility: hidden;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.w-33 {
  width: 33.33%;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.fs-14 {
  font-size: 14px;
}

.fw-700 {
  font-weight: 700;
}

.d-block {
  display: block;
}

.uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.overlay, .image-gallery .image-link::after, .section-hero .hero-carousel .slide:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.rating-stars {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.rating-stars .star {
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ddd" stroke="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-star"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
}
.rating-stars .star.checked {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e5c37e" stroke="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-star"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
}

form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
form > div {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
form > div:not(.form-buttons) {
  margin-bottom: 20px;
}
form label {
  display: inline-block;
  margin-bottom: 0.35rem;
}
form label.required::after {
  content: "*";
  margin-left: 5px;
  color: #f50000;
}
form .form-select, form .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 10px 16px;
  line-height: 1.5;
  outline: none;
  border: 1px solid #d5d5d5;
  transition: border-color 0.2s ease-in-out;
}
form .form-select:focus, form .form-control:focus {
  border-color: #555;
}
form .form-select {
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"> <path stroke-linecap="round" stroke-linejoin="round" d="M19 9l-7 7-7-7"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
}
form .form-buttons {
  margin-top: 10px;
  text-align: center;
}
form input[type=submit] {
  font-weight: 400;
  min-width: 200px;
}
form textarea {
  height: 200px;
  resize: none;
}
form .accept-terms-checkbox {
  display: flex;
  align-items: center;
  width: 100%;
}
form .accept-terms-checkbox label {
  margin-bottom: 0;
  cursor: pointer;
}
form .accept-terms-checkbox .text-danger {
  display: block;
}
form .text-danger {
  font-size: 14px;
  color: red;
}

.input-validation-error {
  border: 1px solid red !important;
}

.field-validation-error {
  display: inline-block;
  margin-top: 0.35rem !important;
}

input[type=checkbox] {
  appearance: none;
  outline: none;
  background: white;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: none;
  margin-left: 0;
  margin-right: 10px;
  border: 1px solid #bababa;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

input[type=checkbox]:checked {
  background: #0075ff;
  border-color: #0075ff;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23fff" stroke-width="3"><path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7"/></svg>');
}

@media screen and (max-width: 575.98px) {
  form {
    flex-direction: column;
  }
  form > * {
    width: 100% !important;
  }
}
.btn {
  padding: 12px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  background: inherit;
  color: #333;
  cursor: pointer;
  border-radius: 0.25rem;
  border: 2px solid transparent;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.btn svg {
  width: 18px;
  height: 18px;
  margin-left: 5px;
}

.btn-primary {
  background-color: #f50000;
  border-color: #f50000;
  color: white;
}
.btn-primary:hover {
  color: white;
  background-color: #c20000;
  border-color: #c20000;
}

.btn-primary-outlined {
  color: #f50000;
  border-color: #f50000;
}
.btn-primary-outlined:hover {
  color: white;
  background-color: #f50000;
  border-color: #f50000;
}

.btn-secondary {
  background-color: #333;
  border-color: #333;
  color: white;
}
.btn-secondary:hover {
  color: white;
  background-color: #dcaf54;
  border-color: #dcaf54;
}

.btn-secondary-outlined {
  color: #333;
  border-color: #333;
}
.btn-secondary-outlined:hover {
  color: white;
  background-color: #e5c37e;
  border-color: #e5c37e;
}

header {
  padding: 23px 0;
  color: #333;
  overflow: hidden;
  z-index: 300;
  font-weight: 500 !important;
}
header .logo img {
  display: block;
}
header .hamburger {
  cursor: pointer;
  display: none;
}
header .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: all 300ms ease-in-out;
  transform-origin: 2px 1px;
}
header .hamburger span:not(:last-child) {
  margin-bottom: 5px;
}
header.open .hamburger .line1 {
  transform: rotate(45deg);
}
header.open .hamburger .line2 {
  opacity: 0;
}
header.open .hamburger .line3 {
  transform: rotate(-45deg);
}
header .right-side {
  display: flex;
}
header ul.main-menu {
  display: flex;
  align-items: center;
}
header ul.main-menu li {
  margin-right: 10px;
}
header ul.main-menu li a {
  display: block;
  padding: 8px 8px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out;
}
header ul.main-menu li a:hover {
  color: #e5c37e;
}
header ul.main-menu li:active {
  color: #e5c37e;
}
header .btn-make-reservation {
  border: 2px solid #e5c37e;
}
header .lang-chooser {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}
header .lang-chooser a {
  margin: 0 7px;
  color: inherit;
  transition: color 0.15s ease-in-out;
  position: relative;
}
header .lang-chooser a:hover {
  color: #e5c37e;
}
header .lang-chooser a:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 12px;
  background: #333;
  position: absolute;
  left: -7px;
  top: 4px;
}

@media screen and (max-width: 991.98px) {
  header {
    background: white;
    padding: 16px 0;
  }
  header .hamburger {
    display: block;
  }
  header .right-side {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s ease-in-out;
  }
  header.open .right-side {
    max-height: 500px;
    transition: max-height 0.25s ease-in-out;
  }
  header ul.main-menu {
    flex-direction: column;
    margin: 20px 0;
  }
  header ul.main-menu li {
    margin-right: 0;
    margin-bottom: 5px;
  }
  header ul.main-menu li a {
    display: block;
    font-size: 16px;
  }
  header .lang-chooser {
    margin-left: 0;
    margin-bottom: 30px;
    font-size: 16px;
  }
  header .lang-chooser a:not(:first-child)::before {
    height: 14px;
  }

  .home-page header {
    color: #333;
    position: relative;
  }
  .home-page header .logo {
    color: #333;
  }
}
.section {
  position: relative;
}
.section:not(.section-hero) {
  padding: 50px 0;
}
    .section .section-title {
        font-size: 40px;
        font-family: "Montserrat", sans-serif;
        text-align: center;
        color: #0e724d !important;
    }
.section .section-text {
  font-size: 16px;
  color: #555;
  text-align: center;
}

.section-hero {
  position: relative;
}
.section-hero .hero-carousel {
  display: flex;
  height: 80vh;
  overflow: hidden;
}
.section-hero .hero-carousel .slide:before {
  content: "";
}
.section-hero .hero-carousel .slide:not(:first-child) {
  display: none;
}
    .section-hero .hero-carousel .slide-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #dcaf54 !important;
        z-index: 3;
        padding: 20px;
    }
.section-hero .hero-carousel h2 {
  font-size: 3rem;
  max-width: 750px;
  opacity: 0.9;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.2s ease-in-out;
}
.section-hero .hero-carousel p {
  text-align: center;
  font-size: 20px;
  font-weight: 200;
  opacity: 0.9;
  color: #e5c37e;
}
.section-hero .hero-carousel .btn {
  opacity: 0.9;
}
.section-hero img {
  object-fit: cover;
  width: 100%;
  height: 80vh;
}

.section-welcome .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-welcome .left-side {
  width: 50%;
  margin-right: 30px;
}
    .section-welcome .left-side .section-title,
    .section-welcome .left-side .section-text {
        text-align: left;
        color: #0e724d !important;
    }
.section-welcome .left-side .welcome-message {
  margin: 20px 0;
  color: #555;
  line-height: 27px;
}
.section-welcome .right-side {
  display: flex;
  justify-content: space-around;
  width: 50%;
}
.section-welcome .right-side img {
  width: 49%;
  max-height: 400px;
  object-fit: cover;
}

.section-recommendations {
  background: #f7f7f7;
}
.section-recommendations .recommendations {
  margin-top: 35px;
}
.section-recommendations .recommended-item {
  width: 49%;
  background: white;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  /*border: 1px solid #f0f0f0;*/
}
.section-recommendations .recommended-item img {
  width: 170px;
  min-width: 170px;
  height: 170px;
  min-height: 170px;
  object-fit: cover;
}
.section-recommendations .recommended-item .item-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.section-recommendations .recommended-item .item-details .title {
  font-size: 18px;
  font-weight: 700;
}
.section-recommendations .recommended-item .item-details .description {
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: #555;
}
.section-recommendations .recommended-item .item-details .price {
  color: #f50000;
  font-size: 16px;
  font-weight: 700;
  margin-top: auto;
}

.section-reviews .reviews {
  margin-top: 30px;
  padding: 0 30px;
}
.section-reviews .reviews .review-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.section-reviews .reviews .review-item .text {
  max-width: 700px;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 20px;
}
.section-reviews .reviews .review-item .reviewer {
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0;
}
h2 {
    color: #0e724d !important;
}
@media screen and (max-width: 991.98px) {
    .section .section-title,
    .section .section-text {
        text-align: center !important;
        color: #0e724d !important;
    }

  .section-hero .hero-carousel h2 {
    font-size: 2.5rem;
  }

  .section-welcome .section-inner {
    flex-direction: column;
  }
  .section-welcome .section-inner .left-side {
    width: 100%;
    margin: 0;
    margin-bottom: 25px;
    text-align: center;
  }
  .section-welcome .section-inner .right-side {
    width: 100%;
  }

  .section-recommendations .recommended-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .section-recommendations .recommended-item img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 575.98px) {
  .section-hero .hero-carousel h2 {
    font-size: 2rem;
  }

  .section-reviews .reviews {
    padding: 0 20px;
  }
}
.footer {
  background: #f5f5f5;
}
.footer a {
  color: #333;
  transition: color 0.2s ease-in-out;
}
.footer a:hover {
  color: #f50000;
}
.footer h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}
.footer-columns .column {
  min-width: 180px;
}
.footer-columns .column ul li {
  margin-bottom: 10px;
}
.footer-columns .column-brand .logo {
  margin-bottom: 10px;
}
.footer-columns .column-brand p {
  line-height: 27px;
  max-width: 310px;
  margin-top: 1rem;
}
.footer-columns .column-brand .socials {
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
}
.footer-columns .column-brand .socials li {
  margin-bottom: 0;
}
.footer-columns .column-brand .socials li:not(:last-child) {
  margin-right: 10px;
}
.footer-columns .column-brand .socials li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid #555;
  border-radius: 50%;
  color: #555;
  transition: all 0.2s ease-in-out;
}
.footer-columns .column-brand .socials li a:hover {
  color: #f50000;
  border-color: #f50000;
}
.footer-columns .column-contact ul li {
  display: flex;
  align-items: center;
}
.footer-columns .column-contact ul li a {
  display: inline-flex;
  align-items: center;
}
.footer-columns .column-contact ul li svg {
  margin-right: 10px;
}
.footer-columns .column-open-hours p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
.footer-columns .column-open-hours span {
  display: block;
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
}
.footer-bottom a {
  white-space: nowrap;
  text-transform: uppercase;
}
.footer-bottom ul {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.footer-bottom ul li:not(:last-child) {
  margin-right: 30px;
}

@media screen and (max-width: 991.98px) {
  .footer h3 {
    margin-bottom: 16px;
  }

  .footer-columns {
    justify-content: space-around;
  }
  .footer-columns .column {
    width: 47%;
    margin-bottom: 30px;
  }
  .footer-columns .column-brand p {
    margin-top: 10px;
  }
  .footer-columns .column-brand .socials {
    margin-top: 12px;
  }
  .footer-columns .column-links, .footer-columns .column-open-hours {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575.98px) {
  .footer h3 {
    margin-bottom: 14px;
  }

  .footer-columns {
    justify-content: space-around;
  }
  .footer-columns .column {
    width: 100%;
    margin: 0 10px;
  }
  .footer-columns .column:not(:last-child) {
    margin-bottom: 25px;
  }
  .footer-columns .column-brand p {
    margin-top: 10px;
  }
  .footer-columns .column-brand ul.socials {
    margin-top: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }
  .footer-bottom p {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer-bottom ul {
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
    margin-top: 10px;
  }
  .footer-bottom ul li {
    margin-bottom: 5px;
  }
  .footer-bottom ul li:not(:last-child) {
    margin-right: 20px;
  }
}
.cookie-consent {
  width: 100%;
  position: fixed;
  bottom: 0;
  background: white;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.cookie-consent .cookie-consent-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
}
.cookie-consent .cookie-consent-inner p {
  margin-bottom: 0;
}
.cookie-consent .cookie-consent-inner .action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.cookie-consent .cookie-consent-inner .action-buttons .btn {
  margin: 0 5px;
  padding: 10px 20px;
  min-width: 120px;
}

@media screen and (max-width: 575.98px) {
  .cookie-consent .cookie-consent-inner {
    flex-direction: column;
  }
  .cookie-consent .cookie-consent-inner .action-buttons {
    margin-top: 20px;
    width: 100%;
  }
  .cookie-consent .cookie-consent-inner .action-buttons .btn {
    width: 50%;
  }
}

@media screen and (max-width: 767.98px) {
    .pageTitle {
        background: url('https://casaalesia.ro/images/top.jpg') center center no-repeat;
        background-size: cover;
        padding: 70px 20px;
        text-align: center;
        color: antiquewhite;
        opacity: 0.7;
    }
}
@media screen and (min-width: 767.99px) {
    .pageTitle {
        background: url('https://casaalesia.ro/images/top.webp') center center no-repeat;
        background-size: cover;
        padding: 70px 20px;
        text-align: center;
        color: antiquewhite;
        opacity: 0.7;
    }
}

.page-title {
    background: url("https://casaalesia.ro/images/top.webp") center center no-repeat;
    background-size: cover;
    padding: 70px 20px;
    text-align: center;
    color: antiquewhite;
    opacity: 0.7;
}
.page-title h1 {
  font-size: 38px;
  text-transform: uppercase;
}

main {
  min-height: 200px;
}

.owl-theme .owl-nav [class*=owl-] {
  margin: 0 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-theme .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot.active span {
  background: #e5c37e;
}

.hero-carousel .owl-nav [class*=owl-] {
  border-radius: 0;
}
.hero-carousel .owl-nav [class*=owl-]:hover {
  background: rgba(0, 0, 0, 0.5);
}
.hero-carousel .owl-nav [class*=owl-]:hover svg {
  color: white;
}
.hero-carousel .owl-nav [class*=owl-] svg {
  width: 40px;
  height: 50px;
  color: #ddd;
  stroke-width: 1;
}
.hero-carousel .owl-prev {
  left: 20px;
}
.hero-carousel .owl-next {
  right: 20px;
}
.hero-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.reviews-carousel .owl-nav [class*=owl-] {
  border-radius: 50%;
}
.reviews-carousel .owl-nav [class*=owl-]:hover {
  background: #333;
}
.reviews-carousel .owl-nav [class*=owl-]:hover svg {
  color: white;
}
.reviews-carousel .owl-nav [class*=owl-] svg {
  width: 35px;
  height: 35px;
  padding: 2px;
  color: #333;
  stroke-width: 1.2;
  border-radius: 50% !important;
}
.reviews-carousel .owl-prev {
  left: -20px;
}
.reviews-carousel .owl-next {
  right: -20px;
}

@media screen and (max-width: 575.98px) {
  .hero-carousel .owl-prev {
    left: 0px;
  }
  .hero-carousel .owl-next {
    right: 0px;
  }

  .reviews-carousel .owl-prev {
    left: -5px;
  }
  .reviews-carousel .owl-next {
    right: -5px;
  }
}
.about-container .section-about {
  display: flex;
  justify-content: space-between;
}
.about-container .gallery {
  display: flex;
  justify-content: center;
}
.about-container .left-side {
  flex-basis: 60%;
  padding: 0 10px;
}
.about-container .right-side {
  flex-basis: 40%;
  padding: 0 10px;
  position: relative;
  text-align: center;
}
.about-container h2 {
  margin-bottom: 30px;
}
.about-container img {
    max-width: 100%;
    max-height: 580px;
    object-fit: cover;
    border-radius: 10px;
}
.about-container p {
  margin-bottom: 30px;
  color: #555;
}
.about-container p.title {
  font-size: 18px;
  line-height: 1.5;
  max-width: 960px;
  color: #333;
}
.about-container p.text {
  max-width: 960px;
  font-size: 16px;
  line-height: 27px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.gallery img {
  width: 24%;
  height: 250px;
  padding: 5px;
  object-fit: cover;
}

@media screen and (max-width: 991.98px) {
  .section-about {
    flex-direction: column;
  }
}
.menu-item-wrapper {
  margin-bottom: 20px;
}
.menu-item-wrapper h3 {
  font-size: 32px;
  font-weight: 200;
  text-align: center;
  color: #e5c37e;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.menu-list .menu-item {
  width: 48%;
  margin-bottom: 20px;
  font-size: 1rem;
}
.menu-list .menu-item_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-list .menu-item_header .title {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.menu-list .menu-item_header .line {
  flex-grow: 1;
  border-bottom: 1px dashed #bababa;
  align-self: flex-end;
  margin: 0 10px 4px 10px;
}
.menu-list .menu-item_header .price {
  font-weight: 700;
}
.menu-list .menu-item .description {
  color: #555;
  font-size: 14px;
  margin-top: 7px;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 575.98px) {
  .menu-list .menu-item {
    width: 100%;
  }
}
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.image-gallery .image-link {
  flex-basis: calc(25% - 10px);
  display: flex;
  margin: 5px;
  position: relative;
}
.image-gallery .image-link::after {
  content: "";
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.image-gallery .image-link:hover::after {
  opacity: 1;
}
.image-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 991.98px) {
  .image-gallery .image-link {
    flex-basis: calc(33.333% - 10px);
  }

  .lb-nav a.lb-prev,
.lb-nav a.lb-next {
    background: rgba(0, 0, 0, 0.5);
  }

  .lb-nav a.lb-prev {
    left: 30px !important;
  }

  .lb-nav a.lb-next {
    right: 30px !important;
  }
}
@media screen and (max-width: 575.98px) {
  .image-gallery .image-link {
    flex-basis: calc(50% - 10px);
  }

  .lb-nav a.lb-prev,
.lb-nav a.lb-next {
    background: rgba(0, 0, 0, 0.5);
  }

  .lb-nav a.lb-prev {
    left: 30px !important;
  }

  .lb-nav a.lb-next {
    right: 30px !important;
  }
}
.lightbox {
  position: fixed;
  top: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lightbox .lb-image {
  border: none;
  border-radius: 0;
}

.lb-outerContainer {
  border-radius: 0;
  background: white;
}

.lb-data .lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 32px;
  height: 32px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23fff" stroke-width="2"> <path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" /> </svg>') top right no-repeat;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 1;
  position: fixed;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  opacity: 0.7;
}
.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
  opacity: 1;
}

.lb-nav a.lb-prev {
  left: 50px;
  margin-top: -20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23fff" stroke-width="2"> <path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /> </svg>');
}

.lb-nav a.lb-next {
  right: 50px;
  margin-top: -20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23fff" stroke-width="2"> <path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7" /> </svg>');
}

.lb-data .lb-details {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lb-data .lb-details .lb-caption,
.lb-data .lb-details .lb-number {
  color: rgba(255, 255, 255, 0.85);
  flex-grow: 1;
}
.lb-data .lb-details .lb-number {
  padding-bottom: 0;
  text-align: right;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-container .left-side {
  width: 60%;
}
.contact-container .right-side {
  width: 40%;
  padding: 0 50px;
}
.contact-container .right-side h3 {
  font-size: 1rem;
}
.contact-container .right-side > div {
  margin-top: 25px;
}
.contact-container .right-side ul li {
  margin-bottom: 0.5rem;
}
.contact-container .success-alert {
  padding: 10px 20px;
  margin: 0 10px 25px 10px;
  color: #333;
  background: rgba(42, 176, 80, 0.1);
  border: 1px solid rgba(42, 176, 80, 0.2);
  border-radius: 0.25rem;
  font-size: 14px;
}
.contact-container .success-alert p {
  margin-bottom: 0.25rem;
}

@media screen and (max-width: 991.98px) {
  .contact-container .left-side,
.contact-container .right-side {
    width: 100%;
  }
  .contact-container .right-side {
    margin-top: 30px;
    padding: 0 20px;
  }
}
.reservation-container .top-header {
  margin-bottom: 30px;
  padding: 0 10%;
  text-align: center;
}
.reservation-container .top-header h2 {
  font-size: 1.75rem;
}
.reservation-container .top-header p {
  color: #555;
  line-height: 1.5;
}
.reservation-container .top-header p span {
  color: #333;
  font-weight: 700;
}

.reservation-success-container {
  min-height: 500px;
}
.reservation-success-container svg {
  color: #2ab050;
}
.reservation-success-container p {
  margin: 1rem 0;
}
.reservation-success-container .btn {
  margin-top: 30px;
}

@media screen and (max-width: 575.98px) {
  .reservation-container .top-header {
    padding: 0 10px;
  }
}
.faqs-container {
  max-width: 900px;
}

.faq-item {
  position: relative;
}
.faq-item:not(:last-child) {
  margin-bottom: 25px;
}
.faq-item .header {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 24px 24px;
  cursor: pointer;
  transition: background-image 0.1s ease-in-out;
}
.faq-item .header h4 {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-right: 50px;
}
.faq-item .content {
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.faq-item .content p:last-child {
  margin-bottom: 0;
}
.faq-item.open .header {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="8" y1="12" x2="16" y2="12"></line></svg>');
}

.video-wrap {
    width: 100%;
    max-width: 1200px; /* tweak if you want a max width */
    margin: 0 auto;
}

.video-wrap video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* modern, responsive */
    display: block;
}
.cta {
    line-height: 3;
    padding: 8px;
    font-weight: 500;
    color: #b00020;
    border: dashed;
    border-radius: 15px 50px 30px;
}
