
:root {
  --primary-color: #1F4E6B;
  --secondary-color: #2E6F95;
  --black-color: #1F4E6B;
  --dark-color: #1F4E6B;
  --primary-color-200: #EAF4F8;
  --primary-color-400: #D6EAF3;
  --gray-color: #2E6F95;
  --light-color: #fdfdfd;
  --brand-gradient: linear-gradient(135deg, #EAF4F8 0%, #D6EAF3 50%, #BFDDEB 100%);
  /* bootstrap color-scheme */
  --bs-dark-rgb: 31, 78, 107;
  --bs-gray-100: #EAF4F8;
  --bs-gray-300: #D6EAF3;
  --bs-light-rgb: 255, 255, 255;
  --bs-body-color-rgb: 31, 78, 107;
  --bs-primary-rgb: 31, 78, 107;
  --bs-secondary-rgb: 46, 111, 149;
}

:root {
  --heading-font: "Cormorant Upright", serif;
  --body-font: "Sora", sans-serif;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--dark-color);
  margin: 0;
}
p {
  color: var(--dark-color);
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover {
  color: var(--secondary-color);
}
.text-light {
  color: var(--light-color) !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-black {
  color: var(--black-color) !important;
}
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 78, 107, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(31, 78, 107, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  z-index: 1030;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-color);
  color: var(--light-color);
}
.back-to-top svg {
  transform: rotate(-90deg);
}
@media (max-width: 576px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
  }
}
/* 2.1.1 Interactive Image Links
/*----------------------------------------------*/
/* Room Image Links */
.room-image-link {
  cursor: pointer;
  overflow: hidden;
  display: block !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-image-link img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}
.room-image-link .image-overlay {
  background: linear-gradient(135deg, rgba(31, 78, 107, 0.02) 0%, rgba(31, 78, 107, 0.08) 50%, rgba(31, 78, 107, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-image-link .image-label {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-image-link:hover img {
  transform: scale(1.05);
  filter: brightness(0.92);
}
.room-image-link:hover .image-overlay {
  opacity: 1;
}
.room-image-link:hover .image-label {
  opacity: 1;
}
/* Gallery Image Links */
.gallery-image-link {
  cursor: pointer;
  position: relative !important;
  display: block !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-image-link img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}
.gallery-image-link .image-overlay {
  background: linear-gradient(135deg, rgba(31, 78, 107, 0.02) 0%, rgba(31, 78, 107, 0.12) 50%, rgba(31, 78, 107, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-image-link:hover img {
  transform: scale(1.08);
  filter: brightness(0.88);
}
.gallery-image-link:hover .image-overlay {
  opacity: 1;
}
/* Blog Image Links */
.blog-image-link {
  cursor: pointer;
  position: relative !important;
  display: block !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-image-link img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}
.blog-image-link .image-overlay {
  background: linear-gradient(135deg, rgba(31, 78, 107, 0.02) 0%, rgba(31, 78, 107, 0.12) 50%, rgba(31, 78, 107, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-image-link:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}
.blog-image-link:hover .image-overlay {
  opacity: 1;
}
.room-image-link img,
.gallery-image-link img,
.blog-image-link img {
  cursor: pointer;
}
.room-image-link:focus-visible,
.gallery-image-link:focus-visible,
.blog-image-link:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 3px;
}
.room-image-link:active img,
.gallery-image-link:active img,
.blog-image-link:active img {
  transform: scale(1.02);
}
/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}
.bg-primary {
  background: var(--brand-gradient) !important;
}
.bg-gray {
  background-color: var(--primary-color-200) !important;
}
.bg-secondary {
  background-color: var(--primary-color-400) !important;
}
/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 5em;
  padding-bottom: 5em;
}
.padding-medium {
  padding-top: 8em;
  padding-bottom: 8em;
}
.padding-large {
  padding-top: 8em;
  padding-bottom: 8em;
}
.padding-side {
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 1400px) {
  .padding-side {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 1200px) {
  .padding-side {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .padding-side {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
}
@media (max-width: 768px) {
  .padding-side {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .padding-large {
    padding-top: 15em;
  }
}
@media (max-width: 576px) {
  .padding-side {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .padding-large {
    padding-top: 18em;
  }
  /* Fix form overlap on mobile slider */
  #slider {
    margin-bottom: 2rem;
  }
  #slider .rounded-5 {
    height: auto !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-size: cover !important;
    background-position: top center !important;
  }
  #slider .d-flex {
    height: auto !important;
    min-height: auto;
  }
  #slider .row {
    flex-direction: column;
    align-items: center !important;
    width: 100%;
    margin: 0 !important;
    padding: 2rem 0;
  }
  #slider .col-md-6:first-child {
    width: 100% !important;
    margin-bottom: 3rem;
    padding: 2rem 1rem 0 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.512);
    z-index: 10;
    border-radius: 1rem;
  }
  #slider .col-md-6:last-child {
    width: 100% !important;
    margin-top: 0 !important;
    padding: 0 1rem 2rem 1rem;
  }
  #slider form {
    margin-left: 0 !important;
    width: 100%;
    max-height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1rem;
  }
  #slider .display-1 {
    font-size: 1.75rem;
  }
  #slider .btn {
    margin-bottom: 1rem;
  }
}
/* Language Switcher */
.nav-link[href="#en"],
.nav-link[href="#it"] {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav-link[href="#en"].active,
.nav-link[href="#it"].active {
  color: var(--secondary-color) !important;
  border-bottom: 2px solid var(--secondary-color);
}
.nav-link[href="#en"]:hover,
.nav-link[href="#it"]:hover {
  color: var(--secondary-color);
}
/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}
.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}
.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}
/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 400;
}
/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}
/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}
/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/
.btn {
  --bs-btn-padding-x: 2.4rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  text-transform: capitalize;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
  --bs-btn-color: var(--light-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--light-color);
  --bs-btn-hover-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--secondary-color);
  --bs-btn-focus-shadow-rgb: 31, 78, 107;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--secondary-color);
  --bs-btn-active-border-color: var(--secondary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(31, 78, 107, 0.14);
  --bs-btn-disabled-color: var(--light-color);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}
/* - Outline Buttons
--------------------------------------------------------------*/
.btn-outline-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--light-color);
  --bs-btn-hover-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--secondary-color);
  --bs-btn-focus-shadow-rgb: 31, 78, 107;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--secondary-color);
  --bs-btn-active-border-color: var(--secondary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(31, 78, 107, 0.14);
  --bs-btn-disabled-color: var(--primary-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary-color);
  --bs-gradient: none;
}
/* - Button Hover Effects
------------------------------------------------------------- */
.btn-arrow {
  position: relative;
  transition: background-color 300ms ease-out;
}
.btn-arrow span {
  display: inline-block;
  position: relative;
  transition: all 300ms ease-out;
  will-change: transform;
}
.btn-arrow:hover span {
  transform: translate3d(-0.7rem, 0, 0);
}
.btn-arrow svg {
  position: absolute;
  right: 0;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
.btn-arrow:hover svg {
  opacity: 1;
  right: -1.6rem;
}
/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/
/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  color: var(--primary-color);
  text-transform: capitalize;
}
.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--primary-color);
  background-color: var(--primary-color-200);
}
/* Form
------------------------------------------------------------- */
.form-control:focus,
.form-select:focus {
  border-color: var(--dark-color);
  outline: 0;
  box-shadow: none;
}
input,
select,
textarea {
  border-color: var(--primary-color-400);
  outline: 0;
  box-shadow: none;
  background-color: var(--light-color);
}
select:focus {
  box-shadow: none;
}
/* Svg Color
------------------------------------------------------------- */
svg.light-color {
  color: var(--light-color);
}
svg.dark-color {
  color: var(--dark-color);
}
svg.color {
  color: var(--secondary-color);
}
svg.primary-color {
  color: var(--primary-color);
}
svg.social {
  color: var(--secondary-color);
}
svg.social:hover {
  color: var(--primary-color);
}
/* Swiper
------------------------------------------------------------- */
/* room */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.room-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
}
.room-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
/* gallery */
.main-slider-button-next.swiper-button-disabled,
.main-slider-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}
/* modal video override
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}
.modal-content {
  padding: 0;
  background-color: var(--light-color);
  border: none;
  border-radius: 0
}
/* Preloader
------------------------------------------------------------- */
.preloader {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  background: var(--brand-gradient);
}
.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--secondary-color);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-color-400);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/
/* 4.1 Header
/*----------------------------------------------*/
#header {
  position: static;
}
#primary-header {
  top: 0 !important;
  z-index: 999 !important;
  transition: all 0.3s ease;
}
a.nav-link {
  text-transform: capitalize;
  color: var(--dark-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  padding-bottom: 0.3rem;
}
a.nav-link:focus {
  color: var(--dark-color);
}
a.nav-link.active,
a.nav-link:hover {
  color: var(--primary-color) !important;
  outline: none;
}
a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
a.nav-link.active::after,
a.nav-link:hover::after,
a.nav-link:focus::after,
a.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}
a.nav-link.active,
a.nav-link[aria-current="page"] {
  font-weight: 700;
}
#primary-header .dropdown .search::after {
  content: none;
}
#primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}
#primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}
#primary-header .search-dropdown .dropdown-menu button {
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}
@media (max-width: 999px) {
  a.nav-link {
    font-size: 18px;
    padding: 15px 0 15px 0 !important;
  }
  a.nav-link::after {
    bottom: 0.5rem;
  }
}
/* 4.2 Billboard
/*----------------------------------------------*/
/* date */
div.datetime-container,
div.datetime-container * {
  box-sizing: border-box;
  font-family: var(--body-font);
}
div.datetime-container button.date,
div.datetime-container button.time {
  background-color: var(--light-color);
  border: 1px solid var(--primary-color-400);
  border-radius: 8px;
  text-transform: capitalize;
  text-align: start;
  padding: 8px 20px;
  color: var(--secondary-color);
  letter-spacing: 0.1rem;
}
div.datetime-container button>span {
  display: inline-block;
  margin: 0 -6px;
}
div.datetime-container button span.week-day {
  font-size: 16px;
  text-align: right;
}
div.datetime-container button span.week-day::after {
  content: ",";
  display: inline-block;
}
div.datetime-container button span.month {
  font-size: 16px;
  text-align: right;
}
div.datetime-container button span.hours,
div.datetime-container button span.month-day {
  font-size: 16px;
  text-align: center;
  width: 45px;
}
.month br {
  display: none;
}
@media (max-width: 1500px) {
  div.picker {
    width: max-content;
  }
}
/* 4.3 Rooms Section
/*----------------------------------------------*/
.room-item img.post-image {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.room-item:hover img.post-image {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.product-description {
  opacity: 0;
  bottom: -125px;
  transition: all 0.5s ease-in-out;
}
.room-item:hover .product-description {
  opacity: 1;
  bottom: 20px;
}
.rooms-showcase {
  background: linear-gradient(180deg, rgba(234, 244, 248, 0.75) 0%, rgba(255, 255, 255, 0.96) 18%, rgba(255, 255, 255, 0.96) 100%);
}
.rooms-intro {
  max-width: 760px;
}
.rooms-intro .section-kicker,
.room-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 78, 107, 0.08);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.room-detail-card {
  overflow: hidden;
  border: 1px solid rgba(31, 78, 107, 0.12);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 55px rgba(31, 78, 107, 0.12);
}
.room-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.room-carousel .swiper-wrapper {
  display: flex;
  height: 100%;
}
.room-carousel .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.room-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.room-carousel-prev,
.room-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.room-carousel-prev:hover,
.room-carousel-next:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(31, 78, 107, 0.2);
}
.room-carousel-prev {
  left: 0.75rem;
}
.room-carousel-next {
  right: 0.75rem;
}
.room-carousel-pagination {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}
.room-detail-content {
  padding: clamp(1.5rem, 3vw, 3rem);
}
.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.room-specs span {
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: var(--primary-color-200);
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}
.room-summary {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: rgba(31, 78, 107, 0.92);
}
.room-features h5 {
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  color: var(--dark-color);
}
.room-features ul {
  margin: 0;
  padding-left: 1.1rem;
}
.room-features li {
  margin-bottom: 0.45rem;
}
@media (max-width: 991px) {
  .room-detail-content {
    padding: 1.35rem;
  }
  .room-carousel {
    height: 250px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .room-carousel {
    height: 300px;
  }
}
@media only screen and (min-width:770px) and (max-width: 1400px) {
  .product-description {
    bottom: -180px;
  }
}
@media (max-width: 768px) {
  .room-item {
    position: relative;
    overflow: visible;
  }
  .room-item img.post-image {
    width: 100%;
    height: auto;
    display: block;
  }
  .room-image-link {
    display: block !important;
    margin-bottom: 0;
  }
  .product-description {
    position: relative;
    opacity: 1;
    bottom: auto;
    transition: none;
    padding: 1.5rem !important;
    background-color: rgba(31, 78, 107, 0.95);
    margin-top: 0;
  }
  .room-item:hover .product-description {
    opacity: 1;
    bottom: auto;
  }
  .product-description table {
    font-size: 0.85rem;
  }
  .product-description h4 {
    font-size: 1.25rem;
  }
  .room-content {
    display: none;
  }
  .room-content.mobile-title {
    display: block;
    margin-top: 1rem;
  }
}
/* 4.4 Services Section
/*----------------------------------------------*/
.service {
  background-color: var(--light-color);
  border: 1px solid var(--primary-color-400);
  transition: all 0.3s ease-in-out;
}
.service:hover {
  border: 1px solid var(--primary-color);
}
/* 4.5 Blog Section
/*----------------------------------------------*/
.blog-post {
  position: relative;
  isolation: isolate;
  box-shadow: 0 18px 50px rgba(31, 78, 107, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 78, 107, 0.02) 0%, rgba(31, 78, 107, 0.12) 45%, rgba(31, 78, 107, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}
.blog-post > * {
  position: relative;
  z-index: 2;
}
.blog-post h4 {
  margin-top: 0.75rem;
}
.blog-post h4 a {
  color: var(--light-color);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}
.blog-post h4 a:hover {
  color: var(--primary-color-200);
}
.blog-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(31, 78, 107, 0.2);
}
.blog-post .bg-secondary {
  background-color: rgba(255, 255, 255, 0.82) !important;
  color: var(--primary-color) !important;
}
.blog-post img.blog-img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.blog-post:hover img.blog-img {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*----------------------------------------------*/
/* 5 PAGES STYLE */
/*----------------------------------------------*/
/*--------------------------------------------------------------
5.1 About page 
--------------------------------------------------------------*/
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--dark-color);
}
svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}
@keyframes play {
  0% {
    transform: scale(.8);
  }
  100% {
    transform: scale(1.1);
  }
}
/*--------------------------------------------------------------
  5.2 Blog page 
  --------------------------------------------------------------*/
.pagination {
  --bs-pagination-color: var(--primary-color);
  --bs-pagination-hover-color: var(--light-color);
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: var(--light-color);
  --bs-pagination-focus-bg: var(--secondary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}
/*--------------------------------------------------------------
 5.3 Booking page 
  --------------------------------------------------------------*/
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.form-check-input:focus {
  box-shadow: none;
}
/*--------------------------------------------------------------
 5.4 Gallery page 
  --------------------------------------------------------------*/
button.filter-button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}
button.filter-button.active,
button.filter-button:hover {
  color: var(--bs-light);
  background: var(--secondary-color);
}
/*--------------------------------------------------------------
 5.5 Reviews page
--------------------------------------------------------------*/
.reviews-components {
  background-color: var(--light-color);
  box-shadow: 0px 12px 90px rgba(31, 78, 107, 0.08);
}
iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}
.rate {
  color: var(--primary-color);
}
/*--------------------------------------------------------------
 5.5.1 Footer Bottom
--------------------------------------------------------------*/
.footer-bottom {
  color: var(--primary-color);
  background-color: rgba(31, 78, 107, 0.02);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.footer-bottom p {
  color: var(--primary-color);
}
/*--------------------------------------------------------------
5.6 FAQs page 
--------------------------------------------------------------*/
/* accordian style override  */
.accordion {
  --bs-accordion-border-color: var(--primary-color-400);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%231F4E6B&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%232E6F95&width=30');
  --bs-accordion-border-radius: 0px;
}
.accordion-header {
  margin-bottom: 0;
  border-top: 1px solid var(--primary-color-400);
}
.accordion-button {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--primary-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background-color: transparent;
  box-shadow: none;
}