@charset "UTF-8";
@font-face {
  font-family: "Montserrat SemiBold", serif;
  src: url("../fonts/Montserrat.woff2") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lora", serif;
  src: url("../fonts/Lora-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Reset cơ bản */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body mặc định */
body {
  font-family: "Lora", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fffcf2;
}

/* Tiêu đề */
h1, h2 {
  font-family: "Montserrat SemiBold", serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

/* Tiêu đề */
h3, h4, h5, h6 {
  font-family: "Lora", serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

/* Đoạn văn */
p {
  margin-bottom: 1rem;
  color: #444;
}

/* Danh sách không thứ tự */
ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

/* Danh sách có thứ tự */
ol {
  list-style-type: decimal;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Liên kết */
a {
  color: #409cd1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hình ảnh */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Nút */
button {
  background-color: #409cd1;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

html {
  scroll-behavior: smooth;
}

.header-nav {
  background: transparent;
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: background 0.3s ease;
}
.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1174px;
  margin: 0 auto;
}
.header-nav .logo {
  flex: 1;
  text-align: center;
}
.header-nav .logo .logo-img {
  width: 250px;
}
.header-nav .header-nav-wrap {
  flex: 2;
  height: 90px;
  z-index: 1;
}
.header-nav .header-nav-wrap .header-nav-list {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  height: 100%;
  float: inline-end;
}
.header-nav .header-nav-wrap .header-nav-item {
  position: relative;
  display: inline-block;
  height: 100%;
  margin-bottom: 0;
}
.header-nav .header-nav-wrap .header-nav-item .header-nav-link {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  height: 100%;
  align-content: center;
  display: block;
  padding: 0 10px;
  transition: color 0.3s, background 0.3s;
}
.header-nav .header-nav-wrap .header-nav-item:hover > .header-nav-link {
  border-bottom: 1px solid #fff;
}
.header-nav .header-nav-wrap .header-nav-item .header-nav-sublist {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(0) translateY(0);
  background: #222;
  list-style: none;
  margin: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
  padding-left: 0;
}
.header-nav .header-nav-wrap .header-nav-item:hover .header-nav-sublist {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
}
.header-nav .header-nav-wrap .header-nav-item .header-nav-subitem {
  padding: 0;
  margin-bottom: 0;
}
.header-nav .header-nav-wrap .header-nav-item .header-nav-sublink {
  color: #ee8400;
  text-decoration: none;
  padding: 14px 20px;
  display: block;
  transition: all 0.3s;
  font-size: 16px;
  letter-spacing: 2px;
  background: transparent;
  text-transform: uppercase;
}
.header-nav .header-nav-wrap .header-nav-item .header-nav-sublink:hover {
  color: #fff;
  padding-left: 2rem;
}
.header-nav.is-sticky {
  background-color: rgba(251, 246, 232, 0.95);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}
.header-nav.is-sticky .header-nav-list {
  padding: 0;
}
.header-nav.is-sticky .header-nav-item .header-nav-link {
  color: #2c3e50;
}
.header-nav.is-sticky .header-nav-item:hover > .header-nav-link {
  color: #fff;
  background-color: #66b0da;
  border-bottom: 0;
}

@media (max-width: 768px) {
  .header-nav {
    height: 70px;
    background-color: #fff;
  }
  .header-nav .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
  }
  .header-nav .logo {
    order: 1;
    flex: unset;
    padding-left: 15px;
  }
  .header-nav .logo .logo-img {
    height: auto;
  }
  .header-nav .header-nav-wrap {
    display: none !important;
  }
  .header-nav .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1002;
    order: 2;
    margin-right: 8px;
    border: 1px solid #409cd1;
  }
  .header-nav .mobile-menu-btn .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .header-nav .mobile-menu-btn .menu-icon span {
    display: block;
    width: 22px;
    height: 2px;
    background: #409cd1;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-menu-popup {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    pointer-events: none;
  }
  .mobile-menu-popup .mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .mobile-menu-popup .mobile-menu-content {
    position: absolute;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.12);
    transition: left 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 2001;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-popup .mobile-menu-logo {
    text-align: left;
    margin-bottom: 15px;
    background-color: #e7edf1;
    padding: 20px;
  }
  .mobile-menu-popup .mobile-menu-logo .logo-img {
    width: 100%;
    height: auto;
  }
  .mobile-menu-popup .mobile-menu-list {
    list-style: none;
    margin: 0;
  }
  .mobile-menu-popup .mobile-menu-list li {
    margin-bottom: 0;
  }
  .mobile-menu-popup .mobile-menu-list li a {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 8px 0;
  }
  .mobile-menu-popup .mobile-menu-list li a:hover {
    background: #f2f2f2;
    color: #409cd1;
  }
  .mobile-menu-popup.active {
    pointer-events: auto;
  }
  .mobile-menu-popup.active .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-popup.active .mobile-menu-content {
    left: 0;
  }
}
@media (min-width: 769px) {
  .mobile-menu-btn, .mobile-menu-popup {
    display: none !important;
  }
}
.banner {
  position: relative;
  width: 100%;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .banner-content {
  color: #fff;
  text-align: center;
  padding: 40px 60px;
  border-radius: 8px;
  z-index: 1;
}
.banner .banner-content ._wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 240px;
  padding-top: 240px;
}
.banner .banner-content ._wrapper ._title {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px #000;
  word-spacing: 4px;
}
.banner .banner-content ._wrapper ._title-sub {
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.4px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 15px rgb(0, 0, 0);
  padding-top: 16px;
}
.banner .banner-background-overlay {
  background-color: #FBF6E8;
  opacity: 0.23;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.banner .banner-widget-spacer {
  bottom: 0px;
  left: 0;
  position: absolute;
  width: 100%;
}
.banner .banner-widget-container {
  margin: 0px 0px -1px 0px;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(251, 246, 232, 0) 0%, #FBF6E8 100%);
}
.banner .banner-spacer-inner {
  height: 250px;
}

@media screen and (max-width: 768px) {
  .banner .banner-content {
    padding: 30px 40px;
  }
  .banner .banner-content ._wrapper {
    padding-bottom: 180px;
    padding-top: 180px;
  }
  .banner .banner-content ._wrapper ._title {
    font-size: 54px;
  }
  .banner .banner-content ._wrapper ._title-sub {
    font-size: 30px;
    padding-top: 12px;
  }
}
@media screen and (max-width: 425px) {
  .banner .banner-content {
    padding: 20px 30px;
  }
  .banner .banner-content ._wrapper {
    padding-bottom: 120px;
    padding-top: 120px;
  }
  .banner .banner-content ._wrapper ._title {
    font-size: 34px;
  }
  .banner .banner-content ._wrapper ._title-sub {
    font-size: 22px;
    padding-top: 8px;
  }
}
.container {
  max-width: 1174px;
  margin: 0 auto;
}

.luxury-title {
  text-align: center;
  font-size: 45px;
  font-family: "Montserrat SemiBold", serif, cursive;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  word-spacing: 4px;
}
@media (max-width: 768px) {
  .luxury-title {
    font-size: 40px;
    margin-bottom: 20px;
    padding: 0 30px;
    line-height: 1.2;
  }
}
@media (max-width: 425px) {
  .luxury-title {
    font-size: 34px;
  }
}

.luxury-desc {
  font-family: "Lora", serif;
  color: #222;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  padding: 0 100px 50px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .luxury-desc {
    font-size: 16px;
    padding: 0 30px 30px;
  }
}
@media (max-width: 425px) {
  .luxury-desc {
    font-size: 15px;
  }
}

.why-us {
  background: #3b6f8d;
  color: #fff;
  overflow: hidden;
  padding: 56px 0;
  position: relative;
}
@media (max-width: 768px) {
  .why-us {
    padding: 40px 0;
  }
}
@media (max-width: 425px) {
  .why-us {
    padding: 32px 0;
  }
}
.why-us .why-us-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  opacity: 0.45;
  z-index: 1;
}
.why-us .why-us-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-us .why-us-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  width: 100%;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .why-us .why-us-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    justify-content: center;
  }
}
@media (max-width: 425px) {
  .why-us .why-us-list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.why-us .why-us-item {
  flex: 1 1 0;
  max-width: 320px;
  min-width: 220px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .why-us .why-us-item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    min-width: unset;
    padding: 0 20px;
  }
}
@media (max-width: 425px) {
  .why-us .why-us-item {
    flex: 1 1 0;
    max-width: 100%;
    min-width: 100%;
  }
}
.why-us .why-us-item .why-us-item-title {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.2px;
  margin: 24px 0;
  text-align: center;
  color: #fff;
  word-spacing: 4px;
}
@media (max-width: 768px) {
  .why-us .why-us-item .why-us-item-title {
    font-size: 16px;
    margin: 20px 0;
  }
}
@media (max-width: 425px) {
  .why-us .why-us-item .why-us-item-title {
    font-size: 15px;
    margin: 16px 0;
    letter-spacing: 1px;
  }
}
.why-us .why-us-item .why-us-item-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .why-us .why-us-item .why-us-item-description {
    font-size: 15px;
  }
}
@media (max-width: 425px) {
  .why-us .why-us-item .why-us-item-description {
    font-size: 14px;
    line-height: 1.4;
  }
}
.why-us .why-us-item .why-us-icon {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .why-us .why-us-item .why-us-icon {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 425px) {
  .why-us .why-us-item .why-us-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .our-teams {
    padding: 30px 10px 15px 10px;
  }
}
@media (max-width: 425px) {
  .our-teams {
    padding: 20px 10px 10px 10px;
  }
}
.our-teams .our-teams-bg {
  padding: 40px 10px 20px 10px;
  position: relative;
  overflow: hidden;
}
.our-teams .our-teams-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-image: url("../img/bg-art-icon-2x.svg");
  mask-size: cover;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
}
.our-teams .our-teams-desc {
  font-family: "Lora", serif;
  color: #222;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  padding: 20px 100px 50px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .our-teams .our-teams-desc {
    font-size: 16px;
    padding: 0 30px 30px;
  }
}
@media (max-width: 425px) {
  .our-teams .our-teams-desc {
    font-size: 15px;
  }
}
.our-teams .our-teams-wrapper {
  position: relative;
  padding: 0 100px;
}
@media (max-width: 768px) {
  .our-teams .our-teams-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 425px) {
  .our-teams .our-teams-wrapper {
    padding: 0 20px;
  }
}
.our-teams .our-teams-wrapper .our-teams-swiper {
  padding-bottom: 50px;
}
.our-teams .our-teams-wrapper .swiper-button-prev {
  left: 25px;
}
.our-teams .our-teams-wrapper .swiper-button-next {
  right: 25px;
}
.our-teams .our-teams-wrapper .swiper-button-next,
.our-teams .our-teams-wrapper .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.our-teams .our-teams-wrapper .swiper-button-next::after,
.our-teams .our-teams-wrapper .swiper-button-prev::after {
  color: #30759d;
  font-size: 22px;
  font-weight: bold;
}
.our-teams .our-teams-wrapper .swiper-button-next:hover,
.our-teams .our-teams-wrapper .swiper-button-prev:hover {
  background-color: #66b0da;
}
.our-teams .our-teams-wrapper .swiper-button-next:hover::after,
.our-teams .our-teams-wrapper .swiper-button-prev:hover::after {
  color: #fff;
}
.our-teams .our-teams-wrapper .swiper-pagination {
  bottom: 0;
}
.our-teams .our-teams-wrapper .swiper-pagination .swiper-pagination-bullet {
  background: #30759d;
  opacity: 0.4;
  height: 10px;
  width: 10px;
}
.our-teams .our-teams-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #409cd1;
}
.our-teams .our-team-member {
  width: 210px;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .our-teams .our-team-member {
    width: 100%;
  }
}
.our-teams .our-team-member .our-team-member-wrap {
  color: #000;
  display: block;
  overflow: hidden;
  text-decoration: none;
  padding: 0 10px 10px;
}
.our-teams .our-team-member .our-team-avatar-wrap {
  position: relative;
  z-index: 1;
}
.our-teams .our-team-member .our-team-avatar {
  display: block;
  border-radius: 100%;
  margin: 0 auto;
  max-width: 100%;
  object-fit: cover;
  width: 160px;
  height: 160px;
  color: transparent;
}
.our-teams .our-team-member .our-team-info {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 6rem 0.5rem 1.5rem;
  margin-top: -4.375rem;
  background: #fff;
  position: relative;
  text-align: center;
  border-radius: 12px;
}
.our-teams .our-team-member .our-team-name {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
}
.our-teams .our-team-member .our-team-role {
  font-size: 16px;
  line-height: 22px;
  color: #e0a800;
}

.about-us {
  background: #FBF6E8;
  padding: 40px 10px 20px 10px;
}
@media (max-width: 768px) {
  .about-us {
    background: transparent;
  }
}
.about-us .about-us-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
}
.about-us .about-us-flex::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: bottom center;
  mask-size: cover;
  mask-image: url("../img/bg-art-icon-2x.svg");
  top: -40px;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .about-us .about-us-flex {
    flex-direction: column;
    gap: 24px;
  }
  .about-us .about-us-flex::before {
    z-index: -1;
  }
}
.about-us .about-us-img-wrap {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .about-us .about-us-img-wrap {
    max-width: 80%;
  }
}
@media (max-width: 425px) {
  .about-us .about-us-img-wrap {
    max-width: 100%;
  }
}
.about-us .about-us-img {
  width: 100%;
  aspect-ratio: 1.3/1;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: block;
  background: #eee;
  border-top-left-radius: 40%;
  border-bottom-right-radius: 40%;
}
@media (max-width: 768px) {
  .about-us .about-us-img {
    border-top-left-radius: 30%;
    border-bottom-right-radius: 30%;
  }
}
@media (max-width: 425px) {
  .about-us .about-us-img {
    border-top-left-radius: 20%;
    border-bottom-right-radius: 20%;
  }
}
.about-us .about-us-content {
  flex: 1 1 0;
  max-width: 650px;
}
@media (max-width: 768px) {
  .about-us .about-us-content {
    padding: 0 50px;
    max-width: 100%;
  }
}
.about-us .about-us-title {
  font-family: "Montserrat SemiBold", serif, cursive, serif;
  font-size: 45px;
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 18px;
  text-align: left;
  word-spacing: 4px;
}
@media (max-width: 768px) {
  .about-us .about-us-title {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 425px) {
  .about-us .about-us-title {
    font-size: 34px;
  }
}
.about-us .about-us-desc {
  font-size: 17px;
  color: #222;
  font-family: "Lora", serif;
  line-height: 1.7;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .about-us .about-us-desc {
    font-size: 16px;
    text-align: center;
  }
}
@media (max-width: 425px) {
  .about-us .about-us-desc {
    font-size: 15px;
  }
}
.about-us .about-us-desc .about-us-highlight {
  color: #ff7043;
  font-weight: 600;
}
.about-us .about-us-desc b {
  color: #222;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about-us {
    padding: 20px 10px 15px 10px;
  }
}
@media (max-width: 425px) {
  .about-us {
    padding: 20px 10px 10px 10px;
  }
}

.luxury-faq {
  background: #FBF6E8;
  padding: 80px 0 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .luxury-faq {
    padding: 30px 10px 15px 10px;
  }
}
@media (max-width: 425px) {
  .luxury-faq {
    padding: 20px 10px 10px 10px;
  }
}
.luxury-faq::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-size: 100%;
  mask-image: url("../img/bg-art-icon-2x.svg");
  right: 8%;
  top: 3%;
  z-index: 0;
  background: rgb(249, 242, 225);
  mask-position: right top;
}
@media (max-width: 768px) {
  .luxury-faq::after {
    width: 100%;
  }
}
.luxury-faq .luxury-faq-bg {
  z-index: 1;
  max-width: 1174px;
  margin: 0 auto;
  position: relative;
}
.luxury-faq .luxury-faq-desc {
  text-align: center;
  font-family: "Lora", serif;
  color: #222;
  font-size: 18px;
  font-weight: 400;
  padding: 20px 100px 50px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .luxury-faq .luxury-faq-desc {
    font-size: 16px;
    padding: 0 30px 30px;
  }
}
@media (max-width: 425px) {
  .luxury-faq .luxury-faq-desc {
    font-size: 15px;
  }
}
.luxury-faq .luxury-faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.luxury-faq .faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.luxury-faq .faq-question {
  padding: 20px 60px 20px 30px;
  position: relative;
  cursor: pointer;
  border-left: 4px solid #409cd1;
}
.luxury-faq .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
  font-family: "Lora", serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .luxury-faq .faq-question h3 {
    font-size: 16px;
  }
}
.luxury-faq .faq-question .faq-toggle {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.luxury-faq .faq-question .faq-toggle:before, .luxury-faq .faq-question .faq-toggle:after {
  content: "";
  position: absolute;
  background-color: #409cd1;
  transition: all 0.3s ease;
}
.luxury-faq .faq-question .faq-toggle:before {
  width: 2px;
  height: 20px;
  left: 9px;
  top: 0;
}
.luxury-faq .faq-question .faq-toggle:after {
  width: 20px;
  height: 2px;
  left: 0;
  top: 9px;
}
.luxury-faq .faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.luxury-faq .faq-answer p {
  margin: 0;
  padding: 20px 0;
  color: #666;
  line-height: 1.6;
}
.luxury-faq .faq-item.active .faq-toggle:before {
  transform: rotate(90deg);
  opacity: 0;
}
.luxury-faq .faq-item.active .faq-answer {
  max-height: 1000px;
}

.luxury-destinations {
  padding: 40px 10px 20px 10px;
  position: relative;
  overflow: hidden;
}
.luxury-destinations::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: bottom left;
  mask-size: auto;
  mask-image: url("../img/bg-art-icon-2x.svg");
  left: -150px;
  top: 0;
  opacity: 0.4;
  z-index: -1;
}
.luxury-destinations::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: bottom right;
  mask-size: auto;
  mask-image: url("../img/bg-art-icon-2x.svg");
  right: -10%;
  bottom: -25vw;
  opacity: 0.4;
  z-index: -1;
}
@media (max-width: 768px) {
  .luxury-destinations {
    padding: 20px 10px 15px 10px;
  }
  .luxury-destinations::before {
    mask-position: top left;
  }
}
@media (max-width: 425px) {
  .luxury-destinations {
    padding: 20px 10px 10px 10px;
  }
}
.luxury-destinations .luxury-desc {
  text-align: center;
  font-size: 18px;
  color: #222;
  font-family: "Lora", serif;
  padding: 0 100px 50px;
}
@media (max-width: 768px) {
  .luxury-destinations .luxury-desc {
    font-size: 16px;
    padding: 0 40px 30px;
  }
}
@media (max-width: 425px) {
  .luxury-destinations .luxury-desc {
    font-size: 15px;
    padding: 0 20px 20px;
  }
}
.luxury-destinations .luxury-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 54px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .luxury-destinations .luxury-list {
    gap: 30px;
  }
}
@media (max-width: 425px) {
  .luxury-destinations .luxury-list {
    gap: 20px;
  }
}
.luxury-destinations .luxury-item {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 30%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
  padding-bottom: 20px;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .luxury-destinations .luxury-item {
    width: 45%;
  }
}
@media (max-width: 425px) {
  .luxury-destinations .luxury-item {
    width: 100%;
  }
}
.luxury-destinations .luxury-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  transform: translateY(-0.25rem);
}
.luxury-destinations .luxury-item:hover .luxury-item-title {
  color: #409cd1;
}
.luxury-destinations .luxury-item .luxury-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .luxury-destinations .luxury-item .luxury-img-wrap {
    height: 200px;
  }
}
@media (max-width: 425px) {
  .luxury-destinations .luxury-item .luxury-img-wrap {
    height: 180px;
  }
}
.luxury-destinations .luxury-item .luxury-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.luxury-destinations .luxury-item .luxury-item-title {
  font-size: 19px;
  font-family: "Lora", serif, cursive;
  font-weight: 600;
  color: #222;
  padding: 12px 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .luxury-destinations .luxury-item .luxury-item-title {
    font-size: 20px;
    margin: 10px 0;
  }
}
@media (max-width: 425px) {
  .luxury-destinations .luxury-item .luxury-item-title {
    font-size: 18px;
    margin: 8px 0;
  }
}
.luxury-destinations .luxury-item .luxury-item-desc {
  font-size: 16px;
  color: #222;
  font-family: "Lora", serif;
  text-align: left;
  padding: 0 24px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.luxury-destinations .luxury-item .luxury-item-desc ul {
  padding: 0;
  list-style: none;
}
.luxury-destinations .luxury-item .luxury-item-desc li {
  margin: 0;
  padding-bottom: 2px;
}
@media (max-width: 768px) {
  .luxury-destinations .luxury-item .luxury-item-desc {
    font-size: 15px;
    padding: 0 16px;
  }
}
@media (max-width: 425px) {
  .luxury-destinations .luxury-item .luxury-item-desc {
    font-size: 14px;
    padding: 0 12px;
  }
}

.luxury-gallery {
  padding: 40px 10px 20px 10px;
  position: relative;
  overflow: hidden;
}
.luxury-gallery::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: bottom left;
  mask-size: auto;
  mask-image: url("../img/bg-art-icon-2x.svg");
  left: -150px;
  top: 0;
  opacity: 0.4;
  z-index: -1;
}
.luxury-gallery::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 74%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: bottom right;
  mask-size: auto;
  mask-image: url("../img/bg-art-icon-2x.svg");
  right: 3%;
  bottom: -25%;
  opacity: 0.4;
  z-index: -1;
}
@media (max-width: 768px) {
  .luxury-gallery .container {
    padding: 0 20px;
  }
}
@media (max-width: 425px) {
  .luxury-gallery .container {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .luxury-gallery .luxury-title {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media (max-width: 425px) {
  .luxury-gallery .luxury-title {
    font-size: 34px;
    margin-bottom: 14px;
  }
}
@media (max-width: 768px) {
  .luxury-gallery .luxury-desc {
    font-size: 15px;
    padding: 0 20px;
  }
}
@media (max-width: 425px) {
  .luxury-gallery .luxury-desc {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.gallery-slider-section {
  padding: 40px 0 20px 0;
}
@media (max-width: 768px) {
  .gallery-slider-section {
    padding: 30px 0 15px 0;
  }
}
@media (max-width: 425px) {
  .gallery-slider-section {
    padding: 20px 0 10px 0;
  }
}
.gallery-slider-section .gallery-swiper {
  width: 100%;
  margin: 0 auto;
}
.gallery-slider-section .gallery-swiper .swiper-wrapper {
  align-items: center;
}
.gallery-slider-section .gallery-swiper .swiper-slide {
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.3s;
}
@media (max-width: 425px) {
  .gallery-slider-section .gallery-swiper .swiper-slide {
    height: 200px;
  }
}
.gallery-slider-section .gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s;
}
.gallery-slider-section .gallery-swiper .swiper-slide:hover img {
  transform: scale(1.04);
}
.gallery-slider-section .gallery-swiper .swiper-button-prev, .gallery-slider-section .gallery-swiper .swiper-button-next {
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .gallery-slider-section .gallery-swiper .swiper-button-prev, .gallery-slider-section .gallery-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .gallery-slider-section .gallery-swiper .swiper-button-prev::after, .gallery-slider-section .gallery-swiper .swiper-button-next::after {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .gallery-slider-section .gallery-swiper .swiper-button-prev, .gallery-slider-section .gallery-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .gallery-slider-section .gallery-swiper .swiper-button-prev::after, .gallery-slider-section .gallery-swiper .swiper-button-next::after {
    font-size: 16px;
  }
}
.gallery-slider-section .gallery-swiper .swiper-button-prev::after, .gallery-slider-section .gallery-swiper .swiper-button-next::after {
  color: #30759d;
  font-size: 22px;
  font-weight: bold;
}
.gallery-slider-section .gallery-swiper .swiper-button-prev {
  left: 40px;
}
@media (max-width: 768px) {
  .gallery-slider-section .gallery-swiper .swiper-button-prev {
    left: 20px;
  }
}
@media (max-width: 425px) {
  .gallery-slider-section .gallery-swiper .swiper-button-prev {
    left: 15px;
  }
}
.gallery-slider-section .gallery-swiper .swiper-button-prev:hover {
  background-color: #66b0da;
}
.gallery-slider-section .gallery-swiper .swiper-button-prev:hover::after {
  color: #fff;
}
.gallery-slider-section .gallery-swiper .swiper-button-next {
  right: 40px;
}
@media (max-width: 768px) {
  .gallery-slider-section .gallery-swiper .swiper-button-next {
    right: 20px;
  }
}
@media (max-width: 425px) {
  .gallery-slider-section .gallery-swiper .swiper-button-next {
    right: 15px;
  }
}
.gallery-slider-section .gallery-swiper .swiper-button-next:hover {
  background-color: #66b0da;
}
.gallery-slider-section .gallery-swiper .swiper-button-next:hover::after {
  color: #fff;
}
.gallery-slider-section .gallery-swiper .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .gallery-slider-section .gallery-swiper .swiper-pagination {
    margin-top: 20px;
  }
}
@media (max-width: 425px) {
  .gallery-slider-section .gallery-swiper .swiper-pagination {
    margin-top: 15px;
  }
}
.gallery-slider-section .gallery-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #30759d;
  opacity: 0.4;
  height: 10px;
  width: 10px;
}
@media (max-width: 768px) {
  .gallery-slider-section .gallery-swiper .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
  }
}
@media (max-width: 425px) {
  .gallery-slider-section .gallery-swiper .swiper-pagination .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
  }
}
.gallery-slider-section .gallery-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #409cd1;
}

.main-banner-slider-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 10px 20px 10px;
  background: #FBF6E8;
}
.main-banner-slider-section .swiper-button-next, .main-banner-slider-section .swiper-button-prev {
  position: absolute;
  top: 0%;
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s;
  opacity: 1;
}
.main-banner-slider-section .swiper-button-next {
  right: 50px;
}
.main-banner-slider-section .swiper-button-prev {
  right: 110px;
  left: unset;
}
.main-banner-slider-section .swiper-button-next:after,
.main-banner-slider-section .swiper-button-prev:after {
  font-size: 22px;
  color: #30759d;
  font-weight: bold;
}
.main-banner-slider-section .swiper-button-next:hover,
.main-banner-slider-section .swiper-button-prev:hover {
  background: #66b0da;
}
.main-banner-slider-section .swiper-button-next:hover::after,
.main-banner-slider-section .swiper-button-prev:hover::after {
  color: #fff;
}

.main-banner-fixed {
  position: relative;
  width: 1174px;
}
@media (max-width: 768px) {
  .main-banner-fixed {
    width: 100%;
  }
}

.main-banner-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.main-banner-content {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: left;
  padding-left: 80px;
  color: #fff;
  text-shadow: 0 0 20px #000;
}
@media (max-width: 768px) {
  .main-banner-content {
    padding-left: 30px;
    top: 30px;
  }
}

.main-banner-title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
  color: #fff;
  word-spacing: 4px;
}
@media (max-width: 768px) {
  .main-banner-title {
    font-size: 40px;
  }
}
@media (max-width: 425px) {
  .main-banner-title {
    font-size: 34px;
  }
}

.main-banner-desc {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 425px) {
  .main-banner-desc {
    font-size: 18px;
  }
}

.main-banner-slider-wrap {
  padding-left: 44px;
  padding-right: 44px;
  position: relative;
  margin-top: -90px;
}
@media (max-width: 425px) {
  .main-banner-slider-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-banner-slider-wrap .main-banner-swiper {
  pointer-events: auto;
  padding-bottom: 20px;
}
.main-banner-slider-wrap .main-banner-swiper .swiper-wrapper {
  align-items: flex-end;
}
.main-banner-slider-wrap .main-banner-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: none;
  width: 260px;
  height: 220px;
}
.main-banner-slider-wrap .deal-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 240px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  padding: 8px;
  cursor: pointer;
  text-decoration: none;
}
.main-banner-slider-wrap .deal-card:hover {
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(3, 54, 63, 0.16), 0 2px 4px rgba(3, 54, 63, 0.08), 0 1px 2px rgba(3, 54, 63, 0.16), 0 -1px 2px rgba(3, 54, 63, 0.04);
}
.main-banner-slider-wrap .deal-card:hover .deal-title {
  color: #409cd1;
}
.main-banner-slider-wrap .deal-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: block;
}
.main-banner-slider-wrap .deal-card .deal-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
  font-family: "Lora", serif;
}
.main-banner-slider-wrap .main-banner-swiper .swiper-pagination {
  position: absolute;
  top: 0;
  z-index: 10;
  text-align: left;
  height: 30px;
}
.main-banner-slider-wrap .main-banner-swiper .swiper-pagination-bullet {
  background: #30759d;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 4px !important;
  transition: opacity 0.2s;
}
.main-banner-slider-wrap .main-banner-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #409cd1;
}

.plan-peace-mind-section {
  background: #FBF6E8;
  padding: 80px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.plan-peace-mind-section::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-size: 100%;
  mask-image: url("../img/bg-art-icon-2x.svg");
  right: 8%;
  top: 3%;
  z-index: 0;
  background: rgb(249, 242, 225);
  mask-position: right top;
}
@media (max-width: 425px) {
  .plan-peace-mind-section {
    padding: 40px 0 40px 0;
  }
}
.plan-peace-mind-section .plan-peace-mind-container {
  z-index: 1;
  max-width: 1174px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .plan-peace-mind-section .plan-peace-mind-container {
    padding: 0 20px;
  }
}
@media (max-width: 425px) {
  .plan-peace-mind-section .plan-peace-mind-container {
    flex-direction: column;
  }
}
.plan-peace-mind-section .plan-peace-mind-images {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .plan-peace-mind-section .plan-peace-mind-images {
    height: 280px;
  }
}
@media (max-width: 425px) {
  .plan-peace-mind-section .plan-peace-mind-images {
    height: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
}
.plan-peace-mind-section .plan-peace-mind-img {
  object-fit: cover;
  border-radius: 12px;
}
.plan-peace-mind-section .plan-peace-mind-img.plan-peace-mind-img-top {
  width: 72%;
}
@media (max-width: 425px) {
  .plan-peace-mind-section .plan-peace-mind-img.plan-peace-mind-img-top {
    width: 100%;
  }
}
.plan-peace-mind-section .plan-peace-mind-img.plan-peace-mind-img-bottom {
  margin-left: 29%;
  margin-top: -7.5rem;
  width: 59%;
}
@media (max-width: 425px) {
  .plan-peace-mind-section .plan-peace-mind-img.plan-peace-mind-img-bottom {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .plan-peace-mind-section .plan-peace-mind-img {
    position: static;
    border: 4px solid #fff;
    width: 45vw;
    min-width: 180px;
    max-width: 280px;
    height: 160px;
    margin: 0 6px;
  }
  .plan-peace-mind-section .plan-peace-mind-img.plan-peace-mind-img-bottom {
    margin-top: -2.5rem;
  }
}
@media (max-width: 425px) {
  .plan-peace-mind-section .plan-peace-mind-img {
    width: 42vw;
    min-width: 150px;
    max-width: 240px;
    height: 140px;
    margin: 0 4px;
  }
}
.plan-peace-mind-section .plan-peace-mind-content {
  flex: 1 1 0;
  max-width: 540px;
  text-align: left;
}
@media (max-width: 425px) {
  .plan-peace-mind-section .plan-peace-mind-content {
    max-width: 100%;
    text-align: center;
  }
}
.plan-peace-mind-section .plan-peace-mind-title {
  font-family: "Montserrat SemiBold", serif, serif;
  font-size: 45px;
  font-weight: 700;
  color: #222;
  margin-bottom: 32px;
  line-height: 1.1;
  word-spacing: 4px;
}
@media (max-width: 768px) {
  .plan-peace-mind-section .plan-peace-mind-title {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media (max-width: 425px) {
  .plan-peace-mind-section .plan-peace-mind-title {
    font-size: 34px;
    margin-bottom: 14px;
  }
}
.plan-peace-mind-section .plan-peace-mind-desc {
  font-family: "Lora", serif;
  font-size: 18px;
  color: #222;
  line-height: 1.7;
  font-weight: 400;
}
@media (max-width: 768px) {
  .plan-peace-mind-section .plan-peace-mind-desc {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 425px) {
  .plan-peace-mind-section .plan-peace-mind-desc {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 10px;
  }
}

.article-section {
  padding: 40px 10px 20px 10px;
}
.article-section .article-title {
  text-align: center;
  font-size: 45px;
  font-family: "Montserrat SemiBold", serif, serif;
  font-weight: 700;
  margin-bottom: 40px;
  word-spacing: 4px;
}
@media (max-width: 768px) {
  .article-section .article-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 425px) {
  .article-section .article-title {
    font-size: 34px;
  }
}
.article-section .article-title-link {
  color: #222;
}
.article-section .article-title-link:hover {
  color: #409cd1;
  text-decoration: none;
}
.article-section .article-desc {
  text-align: center;
  font-size: 18px;
  color: #222;
  font-family: "Lora", serif;
  padding: 0 100px 50px;
}
@media (max-width: 768px) {
  .article-section .article-desc {
    font-size: 15px;
    padding: 0 25px 25px;
  }
}
.article-section .article-slider-wrap {
  position: relative;
  margin: 0 auto;
  padding-left: 2px;
}
@media (max-width: 768px) {
  .article-section .article-slider-wrap {
    padding: 0 25px;
  }
}
.article-section .article-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s;
}
.article-section .article-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
}
.article-section .article-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.article-section .article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.article-card:hover .article-section .article-img-wrap img {
  transform: scale(1.04);
}
.article-section .article-content {
  min-height: 48px;
  display: -webkit-flex;
  flex-direction: column;
  height: 183px;
  padding: 15px 18px;
}
.article-section .article-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #a68c4a;
  font-family: "Lora", serif;
  margin-bottom: 10px;
  line-height: 1.4;
  margin-bottom: 0;
}
.article-section .article-card-desc {
  font-size: 16px;
  color: #222;
  font-family: "Lora", serif;
  line-height: 1.5;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  padding-top: 10px;
}
.article-section .swiper-button-prev,
.article-section .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border: 2px solid #66b0da;
  color: #30759d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.article-section .swiper-button-prev::after,
.article-section .swiper-button-next::after {
  font-size: 28px;
  color: #66b0da;
  font-weight: bold;
}
.article-section .swiper-button-prev:hover,
.article-section .swiper-button-next:hover {
  background: #66b0da;
  border-color: #66b0da;
}
.article-section .swiper-button-prev:hover::after,
.article-section .swiper-button-next:hover::after {
  color: #fff;
}
.article-section .swiper-button-prev {
  left: -24px;
}
.article-section .swiper-button-next {
  right: -24px;
}
.article-section .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.article-section .swiper-pagination .swiper-pagination-bullet {
  background: #30759d;
  opacity: 0.4;
  height: 10px;
  width: 10px;
}
.article-section .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #409cd1;
}
@media (max-width: 768px) {
  .article-section .swiper-button-prev,
  .article-section .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .article-section .swiper-button-prev::after,
  .article-section .swiper-button-next::after {
    font-size: 20px;
  }
  .article-section .swiper-button-prev {
    left: 10px;
  }
  .article-section .swiper-button-next {
    right: 10px;
  }
}

.why-us-2 {
  background-color: #FDF8F4;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row;
  gap: 0px 0px;
  row-gap: 0px;
  column-gap: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  position: relative;
}
.why-us-2::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-position: bottom right;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .why-us-2 {
    flex-direction: column;
  }
}
.why-us-2 .why-left {
  z-index: 1;
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 0px 0px;
  row-gap: 0px;
  column-gap: 0px;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: calc((100% - 1200px) / 2);
  padding-right: 50px;
}
@media (max-width: 768px) {
  .why-us-2 .why-left {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.why-us-2 .why-left .why-left-content {
  display: flex;
  gap: 0px 0px;
  row-gap: 0px;
  column-gap: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 15px;
  padding-right: 15px;
  flex-direction: column;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  flex: 0 1 auto;
}
.why-us-2 .why-left .why-left-block {
  max-width: 100%;
}
.why-us-2 .why-left .why-left-container {
  height: 100%;
}
.why-us-2 .why-left .why-left-element {
  min-height: 20px;
}
.why-us-2 .why-left .why-left-box {
  margin-bottom: 40px;
  text-align: left;
  border: none;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .why-us-2 .why-left .why-left-box {
    text-align: center;
  }
}
.why-us-2 .why-left .why-left-box .content-inner {
  max-width: 600px;
}
@media (max-width: 768px) {
  .why-us-2 .why-left .why-left-box .content-inner {
    max-width: 100%;
  }
}
.why-us-2 .why-left .why-left-box .sub-title {
  margin-bottom: 12px;
}
.why-us-2 .why-left .why-left-box .tagline {
  background-color: #FFFFFF;
  letter-spacing: 1px;
  position: relative;
  background: #F2F5F9;
  padding: 4px 20px 6px;
  border-radius: 12px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 28px;
  color: #333;
  position: relative;
  text-transform: uppercase;
}
.why-us-2 .why-left .why-left-box .tagline::before {
  font-size: 18px;
  position: relative;
  top: 3px;
  margin-right: 10px;
  content: "\e909";
  font-weight: 500;
  color: #015fc9;
  font-family: "ticomoon" !important;
}
.why-us-2 .why-left .why-left-box .title {
  margin-bottom: 0px;
  font-size: 42px;
  position: relative;
  margin: 0;
  font-weight: 700;
  word-spacing: 4px;
}
@media (max-width: 425px) {
  .why-us-2 .why-left .why-left-box .title {
    font-size: 34px;
  }
}
.why-us-2 .why-left .why-list {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: row;
  gap: 0px 0px;
  row-gap: 0px;
  column-gap: 0px;
  flex-wrap: wrap;
  border-radius: 12px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  flex: 0 1 auto;
}
.why-us-2 .why-left .why-item {
  display: flex;
  align-items: center;
  border-style: solid;
  border-width: 0px 1px 1px 0px;
  border-top-width: 0px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 0px;
  border-color: #DFDFDF;
  padding: 25px;
  width: 50%;
  flex-direction: column;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  flex: 0 1 auto;
}
@media (max-width: 768px) {
  .why-us-2 .why-left .why-item {
    padding: 10px;
  }
}
@media (max-width: 425px) {
  .why-us-2 .why-left .why-item {
    width: 100%;
  }
}
.why-us-2 .why-left .why-item .why-item-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .why-us-2 .why-left .why-item .why-item-wrap {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
.why-us-2 .why-left .why-item .why-item-container {
  width: 100%;
}
@media (max-width: 768px) {
  .why-us-2 .why-left .why-item .why-item-content {
    width: 100%;
  }
}
.why-us-2 .why-left .why-item .why-item-box {
  min-height: 20px;
}
.why-us-2 .why-left .why-item .why-item-single {
  box-sizing: border-box;
}
.why-us-2 .why-left .why-item .why-item-icon {
  width: 70px;
  flex: 0 0 70px;
  height: 70px;
  margin-right: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FDF8F4;
  font-size: 40px;
  color: #16243d;
  transition: all 0.35s;
}
.why-us-2 .why-left .why-item .why-item-title {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}
.why-us-2 .why-left .why-left-bottom {
  position: relative;
}
@media (max-width: 768px) {
  .why-us-2 .why-left .why-left-bottom {
    margin: 0 auto;
  }
}
.why-us-2 .why-left .why-left-bottom-wrap {
  margin: 30px 0px 0px 0px;
}
.why-us-2 .why-left .why-left-bottom-link {
  background-color: #66b0da;
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  position: relative;
  z-index: 9;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.35s;
}
.why-us-2 .why-left .why-left-bottom-link:hover {
  background-color: #30759d;
  text-decoration: none;
}
.why-us-2 .why-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 45px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .why-us-2 .why-right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.why-us-2 .why-right .why-right-content {
  margin-block-end: 0;
  min-width: 0;
  max-width: 100%;
}
.why-us-2 .why-right .why-right-container {
  height: 100%;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .why-us-2 .why-right .why-right-container {
    padding-top: 0;
  }
}
.why-us-2 .why-right .why-right-element {
  min-height: 20px;
}
.why-us-2 .why-right .why-right-single {
  position: relative;
  max-width: 660px;
}
@media (max-width: 768px) {
  .why-us-2 .why-right .why-right-single {
    max-width: 450px;
    margin: 0 auto;
  }
}
.why-us-2 .why-right .why-right-image {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  max-width: 658px;
}
@media (max-width: 768px) {
  .why-us-2 .why-right .why-right-image {
    padding-bottom: 0;
  }
}
.why-us-2 .why-right .why-right-image .content-inner {
  padding: 30px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
.why-us-2 .why-right .why-right-image .content-inner img {
  transition: all 5s;
  border-radius: 50%;
  transform: scale(1) matrix(-1, 0, 0, 1, 0, 0);
  border: none;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.why-us-2 .why-right .why-right-second {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 2;
}
@media (max-width: 768px) {
  .why-us-2 .why-right .why-right-second {
    display: none;
  }
}
.why-us-2 .why-right .why-right-second .content-inner {
  padding: 15px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  max-width: 324px;
}
.why-us-2 .why-right .why-right-second .content-inner img {
  border: none;
  box-shadow: none;
  height: auto;
  max-width: 100%;
  transition: all 5s;
  border-radius: 50%;
}
.why-us-2 .why-right .why-right-third {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.why-us-2 .why-right .why-right-third img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

.luxury_booking {
  z-index: 0;
  position: relative;
  overflow: hidden;
}
.luxury_booking::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: 100%;
  bottom: -30px;
  left: -10%;
  z-index: 1;
  opacity: 0.02;
  pointer-events: none;
}
@media (max-width: 768px) {
  .luxury_booking {
    padding: 0 15px;
  }
}
.luxury_booking .lb_overlay {
  opacity: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}
.luxury_booking .lb_container {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.luxury_booking .lb_container::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
  top: 100px;
  right: -30%;
  z-index: 0;
  opacity: 0.02;
  pointer-events: none;
}
.luxury_booking .lb_wrap {
  padding: 150px 0px 150px 0px;
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media (max-width: 425px) {
  .luxury_booking .lb_wrap {
    padding: 50px 0px;
  }
}
.luxury_booking .lb-widget-heading {
  width: 700px;
}
.luxury_booking .lb-widget-container {
  padding-bottom: 70px;
}
.luxury_booking .lb-heading-holder {
  text-align: start;
  justify-content: start;
  justify-items: start;
  position: relative;
}
.luxury_booking .lb-heading-holder .lb-heading-title-wrapper {
  line-height: 1;
  margin-top: 0;
}
.luxury_booking .lb-heading-holder .lb-heading-title {
  font-size: 45px;
  margin-top: 0;
  color: #fff;
  font-family: "Montserrat SemiBold", serif;
}
.luxury_booking .lb-heading-holder .lb-heading-content-wrapper {
  max-width: 650px;
  font-size: 16px;
  color: #fff;
}
.luxury_booking .lb-section-content {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 100%;
}
.luxury_booking .lb-tabs-container {
  border-radius: 12px;
  padding: 40px;
  background-color: #fbf6e8;
  position: relative;
  width: 100%;
}
.luxury_booking .lb-tabs-container::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  margin: auto;
  border-image: url(../img/border-image-k.png) 120 110;
  border-width: 60px;
  border-style: solid;
  filter: hue-rotate(30deg) saturate(2) brightness(0.8);
}
@media (max-width: 425px) {
  .luxury_booking .lb-tabs-container::before {
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 425px) {
  .luxury_booking .lb-tabs-container {
    padding: 20px;
  }
}
.luxury_booking .lb-tabs-container .lb-tabs-content-wrapper {
  padding: 40px 35px;
  background: none;
  font-family: "Lora", serif;
  width: 100%;
  z-index: 1;
  position: relative;
}
@media (max-width: 425px) {
  .luxury_booking .lb-tabs-container .lb-tabs-content-wrapper {
    padding: 20px;
  }
}
.luxury_booking .lb-tabs-container .lb-column-gap-no {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.luxury_booking .lb-tabs-container .lb-widget-wrap {
  width: 100%;
}
.luxury_booking .booking-send-success {
  display: none;
  text-align: center;
}
.luxury_booking .booking-send-success img {
  border: 2px solid #ee8400;
  border-radius: 50%;
  width: 105px;
  justify-self: center;
}
.luxury_booking .booking-send-success p {
  margin-top: 10px;
  color: #2A2825;
}
.luxury_booking .booking-send-success .booking-notify-bold {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
  color: #2A2825;
}

.lb-widget-form .h-48 {
  height: 44px;
}
.lb-widget-form .mb-25 {
  margin-bottom: 25px;
}
.lb-widget-form .pr-15 {
  padding-right: 15px;
}
.lb-widget-form .booking-form-row {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .lb-widget-form .booking-form-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 425px) {
  .lb-widget-form .booking-form-row {
    gap: 0;
    margin-bottom: 0;
  }
}
.lb-widget-form .booking-form-row .booking-form-group {
  flex: 1;
}
.lb-widget-form .booking-form-row.booking-form-row-4 {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.lb-widget-form .booking-form-row.booking-form-row-4 .booking-form-group {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .lb-widget-form .booking-form-row.booking-form-row-4 {
    flex-direction: column;
    gap: 15px;
  }
  .lb-widget-form .booking-form-row.booking-form-row-4 .booking-form-group {
    flex: 1;
    margin-bottom: 15px;
  }
}
@media (max-width: 425px) {
  .lb-widget-form .booking-form-row.booking-form-row-4 {
    gap: 0;
    margin-bottom: 0;
  }
}
.lb-widget-form .booking-form-row.booking-form-row-3 {
  display: flex;
  gap: 20px;
}
.lb-widget-form .booking-form-row.booking-form-row-3 .booking-form-group {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .lb-widget-form .booking-form-row.booking-form-row-3 {
    flex-direction: column;
    gap: 15px;
  }
  .lb-widget-form .booking-form-row.booking-form-row-3 .booking-form-group {
    flex: 1;
    margin-bottom: 15px;
  }
}
@media (max-width: 425px) {
  .lb-widget-form .booking-form-row.booking-form-row-3 {
    margin-bottom: 0;
    gap: 0;
  }
}
.lb-widget-form .booking-form-group {
  position: relative;
}
@media (max-width: 768px) {
  .lb-widget-form .booking-form-group {
    margin-bottom: 20px;
  }
}
.lb-widget-form .booking-form-group label {
  display: block;
  font-family: "Lora", serif, serif;
  font-size: 15px;
  font-weight: 600;
  color: #2A2825;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
@media (max-width: 425px) {
  .lb-widget-form .booking-form-group label {
    font-size: 14px;
  }
}
.lb-widget-form .booking-form-group .booking-form-phone {
  border: 1px solid #FFB347;
  height: 44px;
}
.lb-widget-form .booking-form-group input[type=text],
.lb-widget-form .booking-form-group input[type=email],
.lb-widget-form .booking-form-group input[type=tel],
.lb-widget-form .booking-form-group input[type=date],
.lb-widget-form .booking-form-group select,
.lb-widget-form .booking-form-group textarea {
  width: 100%;
  border: 1px solid #FFB347;
  border-radius: 12px;
  font-family: "Lora", serif, serif;
  font-size: 14px;
  padding-left: 15px;
  color: #2A2825;
  background-color: #FFFFFF;
}
.lb-widget-form .booking-form-group input[type=text]:focus,
.lb-widget-form .booking-form-group input[type=email]:focus,
.lb-widget-form .booking-form-group input[type=tel]:focus,
.lb-widget-form .booking-form-group input[type=date]:focus,
.lb-widget-form .booking-form-group select:focus,
.lb-widget-form .booking-form-group textarea:focus {
  outline: none;
  border-color: #FF8C42;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
  background-color: #FEFEFE;
}
.lb-widget-form .booking-form-group input[type=text]:hover,
.lb-widget-form .booking-form-group input[type=email]:hover,
.lb-widget-form .booking-form-group input[type=tel]:hover,
.lb-widget-form .booking-form-group input[type=date]:hover,
.lb-widget-form .booking-form-group select:hover,
.lb-widget-form .booking-form-group textarea:hover {
  border-color: #D0D0D0;
}
.lb-widget-form .booking-form-group input[type=text]::placeholder,
.lb-widget-form .booking-form-group input[type=email]::placeholder,
.lb-widget-form .booking-form-group input[type=tel]::placeholder,
.lb-widget-form .booking-form-group input[type=date]::placeholder,
.lb-widget-form .booking-form-group select::placeholder,
.lb-widget-form .booking-form-group textarea::placeholder {
  color: #888888;
  font-style: italic;
}
@media (max-width: 480px) {
  .lb-widget-form .booking-form-group input[type=text],
  .lb-widget-form .booking-form-group input[type=email],
  .lb-widget-form .booking-form-group input[type=tel],
  .lb-widget-form .booking-form-group input[type=date],
  .lb-widget-form .booking-form-group select,
  .lb-widget-form .booking-form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
}
.lb-widget-form .booking-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.lb-widget-form .booking-form-group select option {
  padding: 10px;
  font-family: "Lora", serif, serif;
}
.lb-widget-form .booking-form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: "Lora", serif, serif;
  line-height: 1.5;
  padding: 15px;
}
.lb-widget-form .booking-form-group input.error,
.lb-widget-form .booking-form-group select.error,
.lb-widget-form .booking-form-group textarea.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}
.lb-widget-form .booking-send-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.lb-widget-form .booking-send-success img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.lb-widget-form .booking-send-success p {
  margin: 10px 0;
  font-family: "Lora", serif, serif;
}
.lb-widget-form .booking-send-success p.booking-notify-bold {
  font-weight: 600;
  font-size: 16px;
  color: #2A2825;
}
.lb-widget-form .booking-form-phone {
  display: flex;
  align-items: center;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  overflow: hidden;
}
.lb-widget-form .booking-form-phone:focus-within {
  border-color: #FF8C42;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}
.lb-widget-form .booking-form-phone:hover {
  border-color: #D0D0D0;
}
.lb-widget-form .booking-form-phone .booking-form-flag {
  padding: 14px 12px;
  background-color: #F8F8F8;
  border-right: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
}
.lb-widget-form .booking-form-phone .booking-form-flag img {
  width: 24px;
  height: auto;
  border-radius: 2px;
}
@media (max-width: 480px) {
  .lb-widget-form .booking-form-phone .booking-form-flag img {
    width: 20px;
  }
}
.lb-widget-form .booking-form-phone .booking-form-country-code {
  padding: 14px 8px 14px 12px;
  background-color: #F8F8F8;
  border-right: 1px solid #E8E8E8;
  font-family: "Lora", serif, serif;
  font-size: 15px;
  font-weight: 600;
  color: #2A2825;
  min-width: 50px;
  text-align: center;
}
@media (max-width: 480px) {
  .lb-widget-form .booking-form-phone .booking-form-country-code {
    padding: 12px 6px 12px 10px;
    font-size: 14px;
    min-width: 45px;
  }
}
.lb-widget-form .booking-form-phone input[type=tel] {
  border: none;
  border-radius: 0;
  flex: 1;
  padding: 14px 16px;
  margin: 0;
  background-color: transparent;
}
.lb-widget-form .booking-form-phone input[type=tel]:focus {
  border: none;
  box-shadow: none;
}
@media (max-width: 480px) {
  .lb-widget-form .booking-form-phone input[type=tel] {
    padding: 12px 14px;
  }
}
.lb-widget-form .booking-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #FF8C42 0%, #FFB347 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Lora", serif, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 44px;
}
.lb-widget-form .booking-form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.lb-widget-form .booking-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
  background: linear-gradient(135deg, #E67E22 0%, #FF8C42 100%);
}
.lb-widget-form .booking-form-submit:hover::before {
  left: 100%;
}
.lb-widget-form .booking-form-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}
@media (max-width: 480px) {
  .lb-widget-form .booking-form-submit {
    padding: 14px 25px;
    font-size: 15px;
    letter-spacing: 1px;
  }
}
.lb-widget-form .booking-form-group input:focus, .lb-widget-form .booking-form-group select:focus, .lb-widget-form .booking-form-group textarea:focus {
  animation: focusGlow 0.3s ease-in-out;
}
@keyframes focusGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.3);
  }
  100% {
    box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.1);
  }
}
@media (max-width: 768px) {
  .lb-widget-form .booking-form-row .booking-form-group {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .lb-widget-form .booking-form-row-4 .booking-form-group select, .lb-widget-form .booking-form-row-4 .booking-form-group input,
  .lb-widget-form .booking-form-row-3 .booking-form-group select,
  .lb-widget-form .booking-form-row-3 .booking-form-group input {
    font-size: 14px;
    padding: 12px 14px;
  }
  .lb-widget-form .booking-form-submit-group .booking-form-submit {
    font-size: 14px;
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .lb-widget-form .booking-form-phone .booking-form-flag,
  .lb-widget-form .booking-form-phone .booking-form-country-code {
    padding: 12px 8px;
  }
}

.footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #e3e3e3;
  color: #333;
  padding: 28px 0 20px 0;
  font-family: "Lora", serif;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px;
  }
}
.footer .container {
  max-width: 1174px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer .container {
    padding: 0 20px;
  }
}
@media (max-width: 425px) {
  .footer .container {
    padding: 0 15px;
  }
}
.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 768px) {
  .footer .footer-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
@media (max-width: 425px) {
  .footer .footer-row {
    flex-direction: column;
    gap: 25px;
  }
}
.footer .footer-col {
  flex: 1 1 0;
  max-width: 300px;
}
@media (max-width: 768px) {
  .footer .footer-col {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    text-align: left;
  }
}
@media (max-width: 425px) {
  .footer .footer-col {
    flex: 1 1 0;
    max-width: 100%;
    text-align: center;
  }
}
.footer .footer-title {
  font-family: "Lora", serif, serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}
@media (max-width: 768px) {
  .footer .footer-title {
    text-align: left;
    font-size: 17px;
    margin-bottom: 12px;
  }
}
@media (max-width: 425px) {
  .footer .footer-title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-list li {
  margin-bottom: 5px;
}
@media (max-width: 425px) {
  .footer .footer-list li {
    margin-bottom: 4px;
  }
}
.footer .footer-link, .footer a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
@media (max-width: 425px) {
  .footer .footer-link, .footer a {
    font-size: 14px;
  }
}
.footer .footer-link:hover, .footer a:hover {
  color: #444;
  text-decoration: underline;
}
.footer .footer-contact-info {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 425px) {
  .footer .footer-contact-info {
    font-size: 14px;
    line-height: 1.5;
  }
}
.footer .footer-contact-info p {
  color: #111;
  margin-bottom: 5px;
}
@media (max-width: 425px) {
  .footer .footer-contact-info p {
    margin-bottom: 4px;
  }
}
.footer .footer-contact-info a.footer-link {
  color: #0d6da5;
}
.footer .footer-contact-info a.footer-link:hover {
  color: #0d6da5;
}
.footer .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .footer .social-icons {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
@media (max-width: 425px) {
  .footer .social-icons {
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }
}
.footer .social-icons .social-icon {
  width: 30px;
  height: 30px;
}
@media (max-width: 425px) {
  .footer .social-icons .social-icon {
    width: 26px;
    height: 26px;
  }
}
.footer .social-icons .social-icon img {
  width: 100%;
}

.footer-bottom {
  background-color: #f1f2f3;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #c7d0d9;
}
.footer-bottom .footer-bottom-content {
  max-width: 1174px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    padding: 0 20px;
  }
  .footer-bottom .footer-bottom-content .copyright, .footer-bottom .footer-bottom-content .payment-icons {
    flex: 0 0 100%;
    text-align: center;
    justify-content: center;
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  .footer-bottom .footer-bottom-content {
    gap: 12px;
    padding: 0 15px;
  }
  .footer-bottom .footer-bottom-content .copyright, .footer-bottom .footer-bottom-content .payment-icons {
    text-align: center;
    justify-content: center;
  }
}
.footer-bottom .copyright {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 10px;
}
@media (max-width: 425px) {
  .footer-bottom .copyright {
    font-size: 14px;
    gap: 8px;
  }
}
.footer-bottom .copyright img {
  height: 20px;
  vertical-align: middle;
}
@media (max-width: 425px) {
  .footer-bottom .copyright img {
    height: 16px;
  }
}
.footer-bottom .payment-icons {
  display: flex;
  gap: 15px;
}
@media (max-width: 425px) {
  .footer-bottom .payment-icons {
    gap: 10px;
  }
}
.footer-bottom .payment-icons img {
  height: 30px;
}
@media (max-width: 425px) {
  .footer-bottom .payment-icons img {
    height: 24px;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track-piece {
  background: #ccc;
}

::-webkit-scrollbar-thumb {
  background: #409cd1;
}

.hero-section {
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  padding-left: 10px;
  padding-right: 10px;
}
.hero-section .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .hero-section .container {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.hero-section .hero-content {
  flex: 1.2;
  color: #409cd1;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero-section .hero-content {
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    text-align: center;
  }
}
.hero-section .hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  color: #409cd1;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media (max-width: 425px) {
  .hero-section .hero-title {
    font-size: 34px;
    margin-bottom: 12px;
  }
}
.hero-section .hero-desc {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 768px) {
  .hero-section .hero-desc {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.hero-section .hero-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #409cd1;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero-section .hero-line {
    width: 30px;
  }
}
.hero-section .hero-desc-text {
  color: #409cd1;
  font-size: 18px;
  line-height: 1.6;
  max-width: 420px;
}
@media (max-width: 768px) {
  .hero-section .hero-desc-text {
    font-size: 16px;
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .hero-section .hero-desc-text {
    font-size: 14px;
  }
}
.hero-section .hero-form {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 380px;
}
@media (max-width: 768px) {
  .hero-section .hero-form {
    justify-content: center;
    min-width: unset;
    width: 100%;
    margin-top: 30px;
  }
}
.hero-section .booking-form-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 40px 0 40px 0;
}
@media (max-width: 768px) {
  .hero-section .booking-form-section {
    margin: 20px 0;
  }
}
.hero-section .booking-form-container {
  width: 400px;
  background: #4ba3df;
  border-radius: 12px;
  background-color: rgba(64, 156, 209, 0.85);
  padding: 15px 20px;
  margin-right: 60px;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .hero-section .booking-form-container {
    width: 100%;
    max-width: 400px;
    margin-right: 0;
    padding: 12px 16px;
  }
}
@media (max-width: 425px) {
  .hero-section .booking-form-container {
    padding: 10px 12px;
  }
}
.hero-section .booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 400px;
}
@media (max-width: 768px) {
  .hero-section .booking-form {
    gap: 10px;
  }
}
.hero-section .booking-form-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  padding-bottom: 12px;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}
.hero-section .booking-form-title:after {
  content: "";
  bottom: 0;
  width: 100%;
  height: 1px;
  left: 0;
  position: absolute;
  background-color: #eee;
}
.hero-section .booking-form-row {
  display: flex;
  gap: 2%;
}
@media (max-width: 768px) {
  .hero-section .booking-form-row {
    gap: 10px;
  }
}
@media (max-width: 425px) {
  .hero-section .booking-form-row {
    flex-direction: column;
    gap: 8px;
  }
}
.hero-section .booking-form-row .booking-form-group {
  width: 46%;
}
@media (max-width: 425px) {
  .hero-section .booking-form-row .booking-form-group {
    width: 100%;
  }
}
.hero-section .booking-form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 10px;
}
.hero-section .booking-form-group label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-section .booking-form-group input,
.hero-section .booking-form-group select,
.hero-section .booking-form-group textarea {
  height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  margin-bottom: 0;
  outline: none;
  font-family: "Lora", serif;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.hero-section .booking-form-group input::placeholder,
.hero-section .booking-form-group select::placeholder,
.hero-section .booking-form-group textarea::placeholder {
  color: #fff;
}
.hero-section .booking-form-group select option {
  color: #333;
  background-color: #fff; /* optional: for better contrast */
}
.hero-section .booking-form-group input[type=date] {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.hero-section .booking-form-group input[type=date]::-webkit-calendar-picker-indicator {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.hero-section .booking-form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-size: 14px;
}
.hero-section .booking-form-group textarea::placeholder {
  color: #fff;
}
.hero-section .booking-form-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  padding: 0 8px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.hero-section .booking-form-flag img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  margin-right: 2px;
}
.hero-section .booking-form-country-code {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-right: 4px;
}
.hero-section .booking-form-phone input {
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  padding: 8px 0;
  flex: 1;
}
.hero-section .booking-form-note {
  color: #fff;
  font-size: 12px;
  margin-top: 2px;
  display: block;
}
@media (max-width: 425px) {
  .hero-section .booking-form-note {
    font-size: 11px;
  }
}
.hero-section .booking-form-submit {
  background: #ee8400;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  font-family: "Lora", serif;
}
.hero-section .booking-form-submit:hover {
  background: #66b0da;
}
.hero-section .iti {
  width: 100%;
  display: block;
}
.hero-section .iti__arrow {
  border-top: 4px solid #fff;
}
.hero-section .iti__arrow--up {
  border-bottom: 4px solid #fff;
  border-top: none;
}
.hero-section .iti__flag-container {
  right: auto;
  left: 1px;
}
.hero-section .iti__selected-flag {
  padding: 0 8px 0 8px;
  border-right: 1px solid #ddd;
}
.hero-section .booking-form .iti input[type=tel] {
  width: 100%;
}
.hero-section .booking-form .iti__country-list {
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero-section .booking-form .iti__country {
  padding: 8px 12px !important;
  font-size: 14px !important;
}
.hero-section .booking-form .iti__country:hover {
  background-color: #f5f5f5 !important;
}
.hero-section .booking-form .iti__selected-dial-code {
  color: #fff;
  font-size: 14px !important;
}
.hero-section .booking-form .error-msg {
  color: #ff0000;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}
.hero-section .booking-form input.error {
  border-color: #ff0000 !important;
}
.hero-section .booking-form .error-msg {
  color: #ff0000;
  font-size: 13px;
  margin-top: 5px;
  display: block;
  font-weight: normal;
}
.hero-section .booking-form input.error,
.hero-section .booking-form select.error,
.hero-section .booking-form textarea.error {
  border-color: #ff0000 !important;
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.1);
}
.hero-section .booking-success-message,
.hero-section .booking-error-message {
  margin-bottom: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}
.hero-section .booking-success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.hero-section .booking-error-message {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.hero-section .success-content,
.hero-section .error-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-section .success-icon,
.hero-section .error-icon {
  font-size: 16px;
  font-weight: bold;
}
.hero-section .success-icon {
  color: #28a745;
}
.hero-section .error-icon {
  color: #dc3545;
}
.hero-section .booking-form .iti__arrow {
  border-top: 4px solid #fff;
}
.hero-section .booking-form .iti__arrow--up {
  border-bottom: 4px solid #fff;
  border-top: none;
}
.hero-section .booking-send-success {
  display: none;
  text-align: center;
}
.hero-section .booking-send-success img {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 105px;
  justify-self: center;
}
.hero-section .booking-send-success p {
  margin-top: 10px;
  color: #fff;
}
.hero-section .booking-send-success .booking-notify-bold {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
  color: #fff;
}

.blog-article-section {
  padding: 60px 10px 60px 10px;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #E9F1EC;
}
.blog-article-section .blog-article-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-flex {
    flex-direction: column;
    gap: 32px;
  }
}
.blog-article-section .blog-article-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 32%;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-left {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
.blog-article-section .blog-article-left .blog-article-title-group {
  margin-bottom: 0;
  padding-right: 10px;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-left .blog-article-title-group {
    text-align: center;
    padding: 0 20px;
  }
}
.blog-article-section .blog-article-left .blog-article-title-group .blog-article-desc {
  font-family: "Lora", serif, cursive;
  color: #22313f;
  margin-bottom: 8px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-left .blog-article-title-group .blog-article-desc {
    font-size: 15px;
  }
}
.blog-article-section .blog-article-left .blog-article-title-group .blog-article-title {
  font-size: 45px;
  font-weight: 700;
  color: #22313f;
  line-height: 1.1;
  margin-bottom: 24px;
  word-spacing: 4px;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-left .blog-article-title-group .blog-article-title {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-left .blog-article-title-group .blog-article-title {
    font-size: 34px;
    margin-bottom: 12px;
  }
}
.blog-article-section .blog-article-left .blog-article-title-group .blog-article-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #30759d;
  border-radius: 12px;
  color: #30759d;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-left .blog-article-title-group .blog-article-btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-left .blog-article-title-group .blog-article-btn {
    font-size: 13px;
    padding: 5px 10px;
  }
}
.blog-article-section .blog-article-left .blog-article-title-group .blog-article-btn:hover {
  background: #66b0da;
  color: #fff;
  border: 1px solid #66b0da;
}
.blog-article-section .blog-article-left .blog-article-image-group {
  position: relative;
  margin-top: 30px;
  width: 90%;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-left .blog-article-image-group {
    display: none;
  }
}
.blog-article-section .blog-article-left .blog-article-image-group .blog-article-photographer {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-left .blog-article-image-group {
    width: 100%;
    justify-content: center;
  }
  .blog-article-section .blog-article-left .blog-article-image-group .blog-article-photographer {
    width: 100px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-left .blog-article-image-group .blog-article-photographer {
    width: 80px;
  }
}
.blog-article-section .blog-article-right {
  flex: 2;
  padding-left: 30px;
  width: 68%;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right {
    width: 100%;
    padding-left: 0;
  }
}
.blog-article-section .blog-article-right .blog-article-slider-wrap {
  position: relative;
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .blog-article-swiper {
  overflow: hidden;
  border-radius: 12px;
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .blog-article-swiper .swiper-slide {
  height: auto;
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next,
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: #30759d;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next::after,
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev::after {
  font-size: 22px;
  color: #66b0da;
  font-weight: bold;
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next:hover,
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev:hover {
  background: #66b0da;
  border-color: #66b0da;
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next:hover::after,
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev:hover::after {
  color: #fff;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next,
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next::after,
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev::after {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next,
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next::after,
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev::after {
    font-size: 16px;
  }
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev {
  left: -45px;
  display: none;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev {
    left: 10px;
    display: flex;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-prev {
    left: 5px;
  }
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next {
  right: -45px;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next {
    right: 10px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-button-next {
    right: 5px;
  }
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-pagination .swiper-pagination-bullet {
  background: #30759d;
  opacity: 0.4;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #409cd1;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-pagination {
    margin-top: 20px;
  }
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-pagination {
    margin-top: 15px;
  }
  .blog-article-section .blog-article-right .blog-article-slider-wrap .swiper-pagination .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
  }
}
.blog-article-section .blog-article-right .blog-article-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-list {
    gap: 24px;
    padding: 0 40px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-list {
    gap: 20px;
  }
}
.blog-article-section .blog-article-right .blog-article-item {
  display: flex;
  flex-direction: row;
  gap: 32px;
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  padding: 0;
  transition: none;
  height: 165px;
  transition: all 500ms ease;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-item {
    height: 140px;
    gap: 20px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-item {
    gap: 16px;
    height: 100%;
    display: block;
  }
}
.blog-article-section .blog-article-right .blog-article-item:hover {
  transform: translateY(-5px);
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-img-wrap {
  width: 320px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-item .blog-article-img-wrap {
    width: 200px;
    height: 100%;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-item .blog-article-img-wrap {
    width: 100%;
    height: 200px;
  }
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-img-wrap::after {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  height: 0;
  left: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-img-wrap:hover::after {
  height: 100%;
  opacity: 0;
  transition: all 0.4s linear;
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-img-wrap:hover .blog-article-thumb {
  transform: scale(1.3);
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #eee;
  transition: all 500ms ease;
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-info {
  font-family: "Lora", serif;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-item .blog-article-info {
    flex: 1;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-item .blog-article-info {
    margin: 10px 0 20px 0;
  }
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-info .blog-article-title {
  font-size: 18px;
  font-weight: 600;
  color: #22313f;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-item .blog-article-info .blog-article-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
@media (max-width: 425px) {
  .blog-article-section .blog-article-right .blog-article-item .blog-article-info .blog-article-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-info .blog-article-title a {
  text-decoration: none;
}
.blog-article-section .blog-article-right .blog-article-item .blog-article-info .blog-article-item-desc {
  color: #333;
  font-size: 16px;
  font-family: "Lora", serif;
  line-height: 1.5;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
@media (max-width: 768px) {
  .blog-article-section .blog-article-right .blog-article-item .blog-article-info .blog-article-item-desc {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .blog-article-section {
    padding: 40px 0;
  }
  .blog-article-section .blog-article-item {
    height: auto;
  }
  .blog-article-section .blog-article-item .blog-article-thumb {
    height: 160px;
  }
}
@media (max-width: 425px) {
  .blog-article-section {
    padding: 30px 0;
  }
  .blog-article-section .blog-article-item .blog-article-thumb {
    height: 140px;
  }
}

.luxury-list-tour {
  padding: 40px 10px 20px 10px;
  position: relative;
  overflow: hidden;
}
.luxury-list-tour::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: bottom left;
  mask-size: auto;
  mask-image: url("../img/bg-art-icon-2x.svg");
  left: -150px;
  top: 0;
  opacity: 0.4;
  z-index: -1;
}
.luxury-list-tour::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: rgb(249, 242, 225);
  mask-repeat: no-repeat;
  mask-position: bottom right;
  mask-size: auto;
  mask-image: url("../img/bg-art-icon-2x.svg");
  right: -10%;
  bottom: -25vw;
  opacity: 0.4;
  z-index: -1;
}
@media (max-width: 768px) {
  .luxury-list-tour {
    padding: 20px 10px 15px 10px;
  }
  .luxury-list-tour::before {
    mask-position: top left;
  }
}
@media (max-width: 425px) {
  .luxury-list-tour {
    padding: 20px 10px 10px 10px;
  }
}
.luxury-list-tour .luxury-tours-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 54px;
  padding-bottom: 30px;
}
.luxury-list-tour .luxury-tours-item {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s;
  padding-bottom: 20px;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  border-radius: 12px;
}
.luxury-list-tour .luxury-tours-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  transform: translateY(-0.25rem);
}
@media (max-width: 768px) {
  .luxury-list-tour .luxury-tours-item {
    width: 45%;
  }
}
@media (max-width: 425px) {
  .luxury-list-tour .luxury-tours-item {
    width: 100%;
  }
}
.luxury-list-tour .luxury-tours-item-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.luxury-list-tour .luxury-tours-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.luxury-list-tour .luxury-tours-title {
  font-size: 19px;
  font-family: "Lora", serif, cursive;
  font-weight: 600;
  color: #222;
  margin: 12px 0;
  text-align: center;
  padding: 0 15px;
}
.luxury-list-tour .luxury-tours-destinations {
  font-size: 14px;
  color: #222;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 5px;
  min-height: 60px;
  font-style: italic;
}
@media (max-width: 425px) {
  .luxury-list-tour .luxury-tours-destinations {
    min-height: auto;
  }
}
.luxury-list-tour .luxury-tours-destinations p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.luxury-list-tour .luxury-tours-destinations p.expanded {
  -webkit-line-clamp: unset;
  margin-bottom: 0;
}
.luxury-list-tour .luxury-tours-destinations .show-more-btn {
  color: #66b0da;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.luxury-list-tour .luxury-tours-destinations .show-more-btn:hover {
  color: #409cd1;
}
.luxury-list-tour .luxury-tours-desc {
  font-size: 16px;
  color: #222;
  font-family: "Lora", serif;
  text-align: center;
  padding: 0 24px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .luxury-list-tour .luxury-tours-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 425px) {
  .luxury-list-tour .luxury-tours-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.luxury-list-tour .luxury-tours-price {
  font-size: 16px;
  color: #222;
  font-family: "Lora", serif;
  text-align: center;
  padding: 0 24px;
}
.luxury-list-tour .luxury-tours-btn {
  cursor: pointer;
  line-height: 1.3;
  font-size: 0.9375rem;
  text-align: center;
  padding: 0.625rem 1.25rem;
  background: rgba(0, 0, 0, 0);
  color: #66b0da;
  border: 1px solid #66b0da;
  transition: 0.2s;
  white-space: nowrap;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  word-wrap: break-word;
  white-space: normal;
  margin-top: 10px;
  margin-bottom: 10px;
}
.luxury-list-tour .luxury-tours-btn:hover {
  text-decoration: none;
  color: #fff;
  background: #66b0da;
  border: 1px solid #66b0da;
}

body {
  position: relative;
}

.back-to-top {
  z-index: 99;
  position: fixed;
  bottom: 42px;
  right: 30px;
  width: 33px;
  height: 33px;
  display: none;
  color: #fff;
  background-color: #66b0da;
  transition: all 0.2s ease;
  box-shadow: 0 0 3px rgba(22, 28, 45, 0.15);
  border-radius: 7px;
  text-align: center;
  text-decoration: none;
  padding: 8px;
}
.back-to-top:hover {
  background-color: #409cd1;
}
.back-to-top img {
  width: 17px;
  height: 17px;
  filter: grayscale(100%);
}

.country-checkboxes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .country-checkboxes {
    gap: 12px;
  }
}
@media (max-width: 425px) {
  .country-checkboxes {
    gap: 10px;
  }
}
.country-checkboxes .checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 20%;
}
@media (max-width: 768px) {
  .country-checkboxes .checkbox-item {
    min-width: 100px;
  }
}
@media (max-width: 425px) {
  .country-checkboxes .checkbox-item {
    min-width: 80px;
    gap: 6px;
  }
}
.country-checkboxes .checkbox-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #ee8400;
}
@media (max-width: 425px) {
  .country-checkboxes .checkbox-item input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
}
.country-checkboxes .checkbox-item input[type=checkbox]:checked {
  background-color: #ee8400;
  border-color: #ee8400;
}
.country-checkboxes .checkbox-item input[type=checkbox]:focus {
  outline: 2px solid rgba(255, 140, 66, 0.3);
  outline-offset: 2px;
}
.country-checkboxes .checkbox-item label {
  font-family: "Lora", serif, serif;
  font-size: 14px;
  font-weight: 600;
  color: #2A2825;
  cursor: pointer;
  margin: 0;
  user-select: none;
}
@media (max-width: 768px) {
  .country-checkboxes .checkbox-item label {
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  .country-checkboxes .checkbox-item label {
    font-size: 12px;
  }
}
.country-checkboxes .checkbox-item:hover label {
  color: #FF8C42;
}

.text-white {
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
