@import url(https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
:root {
  --green: #88c797;
  --dark-green: #6E9E2D;
  --light-green: #C4E1A6;
  --white: #FFFFFF;
  --black: #2F2F2F;
  --blue: #ea1c26;
  --inter: "Roboto", sans-serif;
  --jost: "Jost", sans-serif;
}

.main-home-banner {
  margin-top: 70px;
  padding: 50px 25px;
}
@media only screen and (min-width: 768px) {
  .main-home-banner {
    padding: 80px 50px 0;
  }
}
.main-home-banner .home-banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .main-home-banner .home-banner-inner {
    grid-template-rows: 1fr 80px 30px;
  }
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner .banner-left {
    grid-row: 1/2;
    grid-column: 1/2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.main-home-banner .home-banner-inner .banner-left h1 {
  font-size: 32px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .main-home-banner .home-banner-inner .banner-left h1 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner .banner-left h1 {
    font-size: 54px;
    line-height: 1.02;
  }
}
@media only screen and (min-width: 1024px) {
  .main-home-banner .home-banner-inner .banner-left h1 {
    font-size: 74px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-home-banner .home-banner-inner .banner-left h1 {
    font-size: 78px;
  }
}
.main-home-banner .home-banner-inner .banner-left h1 span {
  color: #ea1c26;
  font-family: var(--inter);
}
.main-home-banner .home-banner-inner .banner-left p {
  color: #666;
  margin-bottom: 30px;
  font-family: var(--jost);
}
@media only screen and (min-width: 1024px) {
  .main-home-banner .home-banner-inner .banner-left p {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner .animated {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.main-home-banner .home-banner-inner .banner-right {
  border-radius: 10px;
  overflow: hidden;
  display: none;
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner .banner-right {
    display: block;
    grid-row: 1/4;
    grid-column: 2/4;
    max-height: 70vh;
  }
}
.main-home-banner .home-banner-inner .banner-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner form#front-search-form {
    grid-template-columns: 250px 320px 104px 104px;
    max-width: -moz-max-content;
    max-width: max-content;
    background: #fff;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0px 12px 21px rgba(47, 47, 47, 0.15);
    height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .main-home-banner .home-banner-inner form#front-search-form {
    grid-template-columns: 340px 370px 154px 174px;
  }
}
.main-home-banner .home-banner-inner form, .main-home-banner .home-banner-inner .date-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.main-home-banner .home-banner-inner form .submit-btn-div, .main-home-banner .home-banner-inner .date-picker .submit-btn-div {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .main-home-banner .home-banner-inner form .submit-btn-div, .main-home-banner .home-banner-inner .date-picker .submit-btn-div {
    justify-content: end;
    height: 100%;
  }
}
.main-home-banner .home-banner-inner form .submit-btn-div button, .main-home-banner .home-banner-inner .date-picker .submit-btn-div button {
  max-width: calc(50% - 10px);
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner form input, .main-home-banner .home-banner-inner form select, .main-home-banner .home-banner-inner .date-picker input, .main-home-banner .home-banner-inner .date-picker select {
    height: 100% !important;
    border-radius: 45px;
    padding-left: 20px !important;
    background: #fbfbfb;
  }
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner form button, .main-home-banner .home-banner-inner .date-picker button {
    border-radius: 50px;
    max-width: 100% !important;
  }
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner form .input-group-append, .main-home-banner .home-banner-inner .date-picker .input-group-append {
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .main-home-banner .home-banner-inner form .input-group-append .input-group-text, .main-home-banner .home-banner-inner .date-picker .input-group-append .input-group-text {
    background: transparent;
    border: none;
  }
}
@media only screen and (min-width: 768px) {
  .main-home-banner .home-banner-inner .date-picker {
    grid-template-columns: 1fr 1fr;
  }
}

.site-marquee-section {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
  color: #1f2937;
}
.site-marquee-section::before, .site-marquee-section::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 2;
  pointer-events: none;
}
.site-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #f7faf9 0%, rgba(247, 250, 249, 0));
}
.site-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, #f7faf9 0%, rgba(247, 250, 249, 0));
}

.site-marquee-shell {
  position: relative;
  z-index: 1;
}

.site-marquee-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(29, 191, 115, 0.08);
  border: 1px solid rgba(29, 191, 115, 0.12);
  color: #1dbf73;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-marquee-title {
  margin: 0;
  font-size: clamp(2.4rem, 3vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
}

.site-marquee-copy {
  max-width: 68rem;
  margin: 0.9rem auto 0;
  color: #5b6472;
  font-size: 1.55rem;
}

.site-marquee-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.8rem 0;
}
.site-marquee-row + .site-marquee-row {
  margin-top: 0.35rem;
}

.site-marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: -moz-max-content;
  min-width: max-content;
  animation: site-marquee-scroll 32s linear infinite;
}

.site-marquee-row--reverse .site-marquee-track {
  animation-direction: reverse;
  animation-duration: 36s;
}

.site-marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 1.45rem;
  font-weight: 600;
  color: #111827;
}

.site-marquee-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #1dbf73;
  flex: none;
  box-shadow: 0 0 0 0.35rem rgba(29, 191, 115, 0.12);
}

@keyframes site-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .site-marquee-section {
    padding: 4rem 0;
  }
}
@media (max-width: 767.98px) {
  .site-marquee-section {
    padding: 2.5rem 0;
  }
  .site-marquee-section::before, .site-marquee-section::after {
    width: 4rem;
  }
  .site-marquee-title {
    font-size: 2.2rem;
  }
  .site-marquee-copy {
    font-size: 1.4rem;
  }
  .site-marquee-pill {
    padding: 0.85rem 1.05rem;
    font-size: 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-marquee-track {
    animation: none;
  }
}
.recommended-section {
  position: relative;
  padding: 5rem 0 4rem;
  margin-top: 2rem;
  background: radial-gradient(circle at top left, rgba(29, 191, 115, 0.08), transparent 34%), radial-gradient(circle at bottom right, rgba(59, 136, 188, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .recommended-section {
    padding: 4rem 0 3.5rem;
  }
}
@media only screen and (min-width: 576px) {
  .recommended-section {
    padding: 3rem 0 2.5rem;
    margin-top: 1.5rem;
  }
}

.recommended-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.8rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
@media only screen and (min-width: 768px) {
  .recommended-card {
    border-radius: 1.5rem;
  }
}
@media only screen and (min-width: 576px) {
  .recommended-card {
    border-radius: 1.4rem;
  }
}
.recommended-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.recommended-card__link {
  text-decoration: none;
  color: inherit;
}
.recommended-card__link:hover .recommended-card__image {
  transform: scale(1.05);
  opacity: 0.92;
}

.recommended-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/12;
  overflow: hidden;
  background: #0f172a;
}
@media only screen and (min-width: 576px) {
  .recommended-card__media {
    aspect-ratio: 16/11;
  }
}

.recommended-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.recommended-card__wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
.recommended-card__wishlist .book_mark_change {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #9ca3af;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.28s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.recommended-card__wishlist .book_mark_change:hover {
  background: #fff;
  color: #1dbf73;
  box-shadow: 0 6px 16px rgba(29, 191, 115, 0.2);
}
.recommended-card__wishlist .book_mark_change[style*="color:#1dbf73"] {
  color: #1dbf73 !important;
}
@media only screen and (min-width: 576px) {
  .recommended-card__wishlist {
    top: 0.8rem;
    right: 0.8rem;
  }
  .recommended-card__wishlist .book_mark_change {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.1rem;
  }
}

.recommended-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.4rem;
}
@media only screen and (min-width: 576px) {
  .recommended-card__content {
    padding: 1.1rem;
  }
}

.recommended-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(34, 35, 37, 0.08);
}
@media only screen and (min-width: 576px) {
  .recommended-card__header {
    gap: 0.7rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}

.recommended-card__host {
  flex-shrink: 0;
}
@media only screen and (min-width: 576px) {
  .recommended-card__host {
    display: none;
  }
}

.recommended-card__host-link {
  display: inline-block;
  text-decoration: none;
}
.recommended-card__host-link:hover .recommended-card__host-image {
  transform: scale(1.08);
}

.recommended-card__host-image {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(29, 191, 115, 0.15);
  transition: transform 0.28s ease;
}
@media only screen and (min-width: 576px) {
  .recommended-card__host-image {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.recommended-card__title-section {
  flex-grow: 1;
  min-width: 0;
}

.recommended-card__title {
  display: block;
  margin: 0;
  color: #1f2937;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.28s ease;
}
.recommended-card__title:hover {
  color: #1dbf73;
}
@media only screen and (min-width: 576px) {
  .recommended-card__title {
    font-size: 1.15rem;
  }
}

.recommended-card__location {
  margin: 0.4rem 0 0;
  color: #6b7280;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  letter-spacing: 0.02em;
}
.recommended-card__location i {
  margin-right: 0.4rem;
  color: #1dbf73;
}
@media only screen and (min-width: 576px) {
  .recommended-card__location {
    font-size: 0.85rem;
  }
}

.recommended-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(34, 35, 37, 0.08);
}
@media only screen and (min-width: 576px) {
  .recommended-card__meta {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

.recommended-card__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 700;
}
.recommended-card__rating i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.recommended-card__reviews {
  color: #9ca3af;
  font-weight: 500;
  font-size: 0.9rem;
}

.recommended-card__price {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-align: right;
}
@media only screen and (min-width: 576px) {
  .recommended-card__price {
    text-align: left;
  }
}

.recommended-card__amount {
  color: #1f2937;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
}
@media only screen and (min-width: 576px) {
  .recommended-card__amount {
    font-size: 1.2rem;
  }
}

.recommended-card__duration {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}
.recommended-card__duration::before {
  content: "/";
  margin: 0 0.3rem;
}
@media only screen and (min-width: 576px) {
  .recommended-card__duration {
    font-size: 0.85rem;
  }
}

.recommended-card__amenities {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(34, 35, 37, 0.08);
}
@media only screen and (min-width: 576px) {
  .recommended-card__amenities {
    gap: 0.6rem;
    padding-top: 0.8rem;
  }
}

.recommended-card__amenity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.4rem;
  padding: 0.7rem;
  background: rgba(29, 191, 115, 0.06);
  border-radius: 0.8rem;
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: help;
  transition: all 0.28s ease;
}
.recommended-card__amenity i {
  font-size: 1.05rem;
  color: #1dbf73;
}
.recommended-card__amenity:hover {
  background: rgba(29, 191, 115, 0.12);
  color: #1dbf73;
}
@media only screen and (min-width: 576px) {
  .recommended-card__amenity {
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  .recommended-card__amenity i {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recommended-card,
  .recommended-card__link,
  .recommended-card__image,
  .recommended-card__host-link,
  .recommended-card__title,
  .recommended-card__amenity {
    transition: none;
  }
}
html body .room-image-container200 {
  height: 300px;
}
@media only screen and (min-width: 992px) {
  html body .room-image-container200 {
    height: 220px;
  }
}
