@charset "UTF-8";
:root {
  --primary-color: #5196eb;
  --secondary-color: #E23E26;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn-booking {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: 700;
}

.title1 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.image-cover {
  overflow: hidden;
  padding-top: 100%;
  position: relative;
  display: block;
}
.image-cover img {
  bottom: 0;
  height: 100% !important;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.d-none {
  display: none;
}

.text-center {
  text-align: center;
}

.section-t {
  padding-top: 64px;
}
.section-b {
  padding-bottom: 64px;
}
.section-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.section-title {
  font-size: 32px;
  text-transform: uppercase;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  background-color: #fff;
  border-bottom: 1px solid rgb(242, 242, 247);
  padding: 10px 0;
}
.header.fix-menu {
  position: sticky;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .header-inner {
    gap: 10px;
  }
}
.header-logo {
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .header-logo {
    order: 2;
  }
}
.header-logo img {
  max-width: 180px;
}
.header-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .header-meta {
    order: 1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    transform: scale(0.8);
  }
}
.header-meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-meta-icon {
  width: 45px;
}
.header-meta-icon img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(17%) saturate(6659%) hue-rotate(343deg) brightness(109%) contrast(99%);
}
.header-meta-text {
  color: var(--secondary-color);
  font-weight: 500;
}
.header-meta-text h3 {
  color: var(--secondary-color);
}
@media (max-width: 767px) {
  .header-button {
    order: 3;
  }
}

.home-gallery {
  padding-top: 16px;
}
.home-gallery-wrap {
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .home-gallery-wrap {
    flex-direction: column;
  }
}
.home-gallery-main {
  width: 50%;
}
@media (max-width: 767px) {
  .home-gallery-main {
    width: 100%;
  }
}
.home-gallery-main img {
  border-radius: 20px 0 0 20px;
}
@media (max-width: 767px) {
  .home-gallery-main img {
    border-radius: 0;
  }
}
.home-gallery-main a {
  padding-top: 448px;
}
@media (max-width: 767px) {
  .home-gallery-main a {
    padding-top: 320px;
  }
}
.home-gallery-item {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 767px) {
  .home-gallery-item {
    width: 100%;
  }
}
.home-gallery-item a {
  padding-top: 50%;
}
@media (min-width: 768px) {
  .home-gallery-item a:nth-child(2) {
    border-radius: 0 20px 0 0;
  }
  .home-gallery-item a:nth-child(4) {
    border-radius: 0 0 20px 0;
  }
}
.home-gallery-more {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(-50%, -50%);
  font-size: 15px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.698);
  padding: 4px 10px 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.home-gallery-more::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-thumbnail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.promotion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 767px) {
  .promotion-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.promotion-slider {
  position: relative;
  border-radius: 10px;
}
.promotion-slider img {
  aspect-ratio: 9/6;
}
.promotion-card {
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 16px;
  position: relative;
}
.promotion-card .no-room {
  opacity: 0.6;
  pointer-events: none;
}
.promotion-image {
  position: relative;
}
.promotion-image:after {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background-color: #333;
  content: "";
  opacity: 0;
  border-radius: 10px;
}
.promotion-image:hover:after {
  opacity: 0.2;
}
.promotion-content {
  margin-top: 16px;
}
.promotion-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 8px;
}
.promotion-utilities {
  color: #3a3a3c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 4px;
}
.promotion-utilities span::after {
  content: "•";
  margin: 0 8px;
}
.promotion-utilities span:last-child::after {
  content: none;
}
.promotion-line {
  margin: 8px 0;
  border-top: 1px solid rgb(226, 226, 226);
}
.promotion-price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.promotion-price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.promotion-price-wrap .old-price {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: rgb(28, 28, 30);
}
.promotion-price-wrap .new-price {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-decoration-line: line-through;
  color: #aeaeb2;
}
.promotion-time {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #636366;
}
.promotion-booking {
  font-size: 16px;
  line-height: 24px;
  padding: 10px 16px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.promotion-booking:hover {
  background-color: rgb(217, 85, 0);
}
.promotion-payment {
  background-color: rgb(247, 247, 247);
  padding: 10px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.promotion-payment::before {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../images/icon-money.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.promotion-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background-color: #01aa7f;
  color: #fff;
  padding: 2px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  z-index: 10;
}
.promotion-badge-2 {
  font-size: 15px;
  line-height: 24px;
  position: absolute;
  right: 24px;
  top: 20px;
  background-color: rgb(70, 70, 70);
  color: #f2f2f2;
  border-radius: 5px;
  padding: 2px 5px;
  z-index: 1;
}
.promotion-address {
  font-size: 15px;
  margin-top: 8px;
  background-color: rgb(247, 247, 247);
  padding: 10px 8px;
  border-radius: 8px;
}

.swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.7);
}
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.swiper .swiper-button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(245, 245, 245, 0.7);
  padding: 8px;
  color: #333;
}

.service {
  position: relative;
  margin-top: 64px;
  padding-bottom: 64px;
  color: #fff;
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.78);
}
.service .container {
  position: relative;
  z-index: 1;
}
.service-header {
  text-align: center;
}
.service-title {
  font-size: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .service-title {
    font-size: 28px;
  }
}
.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .service-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-item {
  text-align: center;
}
.service-item-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.service-item-text {
  margin-top: 12px;
  font-size: 16px;
}

.booking {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.booking.show {
  opacity: 1;
  visibility: visible;
}

.section-home-about2 {
  position: relative;
}
.section-home-about2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 250px);
  background: rgba(212, 163, 115, 0.2);
  z-index: -1;
}
.section-home-about2 .banner-about img {
  border-radius: 20px;
  aspect-ratio: 4/3;
}
.section-home-about2 .row {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .section-home-about2 .row {
    grid-template-columns: 1fr;
  }
}
.section-home-about2 .list-about {
  border-top: 1px solid rgba(37, 42, 43, 0.2);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section-home-about2 .list-about .about-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-home-about2 .list-about .about-item .item-icon {
  width: 30px;
  height: 30px;
}
.section-home-about2 .list-about .about-item .item-icon svg {
  fill: var(--secondary-color);
}
.section-home-about2 .list-about .about-item .item-detail .detail-title {
  font-size: 18px;
}

.section-home-form {
  position: relative;
  background: rgba(212, 163, 115, 0.1);
}
.section-home-form:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-image: url(../images/bg-2.jpg);
  background-size: cover;
  background-position: center;
}
.section-home-form .form-bg {
  padding: 60px;
  background: #fff;
  position: relative;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .section-home-form .form-bg {
    padding: 30px;
  }
}
.section-home-form .desc {
  margin-bottom: 30px;
  margin-top: 10px;
}
.section-home-form .form-banner {
  padding-top: 40px;
  border-top: 1px solid #e6e6e6;
}
.section-home-form .form-banner img {
  border-radius: 20px;
}
.section-home-form .form-bg-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .section-home-form .form-bg-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section-home-form .form-booking {
  padding: 50px 30px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.section-home-form .form-booking:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(212, 163, 115, 0.1);
}
.section-home-form .form-booking .wpcf7 {
  position: relative;
  z-index: 1;
}
.section-home-form .contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.section-home-form .contact-form .row .fw {
  grid-column: span 2;
}
.section-home-form .contact-form label {
  margin-bottom: 8px;
  display: block;
}
.section-home-form .contact-form .wpcf7-not-valid-tip {
  font-size: 13px;
}
.section-home-form .contact-form .wpcf7-form-control {
  color: #5c5c5c;
  height: 58px;
  width: 100%;
  font-weight: 500;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  font-size: 14px;
  color: #5c5c5c;
  outline: none;
}
.section-home-form .contact-form .wpcf7-form-control.wpcf7-textarea {
  height: 120px;
}
.section-home-form .contact-form .wpcf7-form-control.wpcf7-submit {
  background: var(--secondary-color);
  border: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.section-home-form .contact-form .form-datepicker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.section-home-form .contact-form .wpcf7-spinner {
  position: absolute;
  left: 0;
}

.section-home-review {
  position: relative;
}
.section-home-review:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 250px);
  background: rgba(212, 163, 115, 0.1);
}
.section-home-review .review-bg {
  position: relative;
  color: #ffffff;
  padding: 80px 50px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section-home-review .review-bg {
    padding: 50px 20px;
  }
}
.section-home-review .review-bg::before, .section-home-review .review-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.section-home-review .review-bg:before {
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-home-review .review-bg::after {
  background-color: rgba(0, 0, 0, 0.6);
}
.section-home-review .list-review {
  position: relative;
  padding-bottom: 30px;
}
.section-home-review .review-item {
  padding: 30px 40px;
  border: 1px solid;
  border-radius: 20px;
}
.section-home-review .review-item .item-desc {
  margin-bottom: 16px;
  line-height: 1.6;
}
.section-home-review .review-item .detail-position {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.section-home-review .review-item .detail-position img {
  width: 18px;
}
.section-home-review .review-item .item-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-home-review .review-item .item-info .info-avt img {
  max-width: 70px;
  border-radius: 50%;
}
.section-home-review .review-item .item-info .info-detail p.detail-name {
  font-size: 18px;
  font-weight: 600;
}
.section-home-review .review-item .item-info .info-room {
  font-size: 14px;
}

.btn-fix {
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 99;
}
.btn-fix ul {
  display: inline-flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}
.btn-fix ul li .title {
  background-color: var(--secondary-color);
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 12px;
  opacity: 0;
  padding: 5px 10px;
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  transition: all 0.2s linear;
  visibility: hidden;
  white-space: nowrap;
  width: auto;
  z-index: 9;
}
.btn-fix ul li .title::after {
  border: 5px solid transparent;
  border-left-color: var(--secondary-color);
  bottom: 0;
  content: "";
  height: 0;
  left: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  transition: all 0.2s linear;
  width: 0;
}
.btn-fix ul li a {
  border-radius: 50%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
  color: #fff;
}
.btn-fix ul li a:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.13);
  opacity: 0.9;
  text-decoration: none;
}
.btn-fix ul li a:hover .title {
  display: block;
  opacity: 1;
  visibility: visible;
}
.btn-fix ul li a > img {
  display: block;
  width: 100%;
  max-width: 28px;
}
.btn-fix ul li a.phone, .btn-fix ul li a.phone {
  background-color: var(--secondary-color);
}
.btn-fix ul li a.phone .title, .btn-fix ul li a.phone .title {
  background-color: var(--secondary-color);
}
.btn-fix ul li a.phone .title::after, .btn-fix ul li a.phone .title::after {
  border-left-color: var(--secondary-color);
}
.btn-fix ul li a.zalo, .btn-fix ul li a.zalo {
  background-color: #095CD4;
}
.btn-fix ul li a.zalo .title, .btn-fix ul li a.zalo .title {
  background-color: #095CD4;
}
.btn-fix ul li a.zalo .title::after, .btn-fix ul li a.zalo .title::after {
  border-left-color: #095CD4;
}
.btn-fix ul li a.mess, .btn-fix ul li a.mess {
  background-color: #0866FF;
}
.btn-fix ul li a.mess .title, .btn-fix ul li a.mess .title {
  background-color: #0866FF;
}
.btn-fix ul li a.mess .title::after, .btn-fix ul li a.mess .title::after {
  border-left-color: #0866FF;
}
.btn-fix ul li a.book, .btn-fix ul li a.book {
  background-color: #027A48;
}
.btn-fix ul li a.book .title, .btn-fix ul li a.book .title {
  background-color: #027A48;
}
.btn-fix ul li a.book .title::after, .btn-fix ul li a.book .title::after {
  border-left-color: #027A48;
}

.booking-form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  color: #333;
  height: calc(100% - 100px);
  overflow: hidden;
  padding-bottom: 50px;
  position: relative;
}
.booking-form-wrap {
  height: 100%;
  overflow: auto;
}
.booking-form .wpcf7,
.booking-form form {
  height: 100%;
}
.booking-form h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}
.booking-form fieldset {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}
.booking-form fieldset legend {
  padding: 0 8px;
  font-weight: 600;
  color: var(--secondary-color);
}
.booking-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  margin-bottom: 14px;
  gap: 6px;
}
.booking-form label strong {
  font-weight: 600;
}
.booking-form input:not([type=checkbox]):not([type=radio]),
.booking-form select,
.booking-form textarea {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  transition: all 0.2s ease;
  width: 100%;
}
.booking-form input:not([type=checkbox]):not([type=radio]):focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.booking-form .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-form textarea {
  resize: vertical;
  height: 120px;
}
.booking-form input[type=submit] {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.booking-form input[type=submit]:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-close {
  width: 32px;
  height: 32px;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background-color: var(--secondary-color);
  border-bottom-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-close svg {
  fill: #fff;
}/*# sourceMappingURL=main.css.map */