@charset "UTF-8";
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-Gilroy.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-GilroySemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-GilroyBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-GilroyMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --normal-color: #111111;
  --primary-color: #003768;
  --second-color: #894BB4;
  --accent-color: #FAA61A;
  --hover-color: #FAA61A;
  --bg-color: #F7EAFF;
  --bg-gradient: linear-gradient(to right, #221952, #0c0c28);
  --bg-gradient2: linear-gradient(45deg, #221950, #0b0a34);
  --trans: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --normal-font: SVN-Gilroy, Arial, sans-serif;
  --primary-font: Cormorant Garamond;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

ul::-webkit-scrollbar-track,
div::-webkit-scrollbar-track {
  border-radius: 5px;
}

ul::-webkit-scrollbar,
div::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

ul::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
  font-family: fontawesome;
}

img,
picture,
svg,
video {
  max-width: 100%;
}

ol,
ul {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--normal-font);
  color: var(--normal-color);
  font-size: 1.6rem;
  line-height: 1.5;
}

.ov-hidden {
  overflow: hidden;
}

.container {
  max-width: 1360px;
}

.row-collapse {
  margin-left: 0;
  margin-right: 0;
}

.row-collapse > div[class~=col],
.row-collapse > div[class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-small {
  margin-left: -10px;
  margin-right: -10px;
}

.row-small > div[class~=col],
.row-small > div[class^=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-weight: bold;
  font-family: var(--primary-font);
}

ol,
ul {
  margin-bottom: 2rem;
  margin-bottom: 0;
}

a {
  color: var(--normal-color);
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}
a:hover {
  color: var(--hover-color);
}

p:last-child {
  margin-bottom: 0;
}

.tb-space {
  padding: 70px 0;
}

.tb-space-top {
  padding-top: 70px;
}

.tb-space-bottom {
  padding-bottom: 70px;
}

.tb-space-sm {
  padding: 40px 0;
}

.tb-space-sm-top {
  padding-top: 40px;
}

.tb-space-sm-bot {
  padding-bottom: 40px;
}

@media (max-width: 767.98px) {
  .tb-space {
    padding: 40px 0;
  }

  .tb-space-top {
    padding-top: 40px;
  }

  .tb-space-bottom {
    padding-bottom: 40px;
  }
}
.custom-form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  appearance: none;
  background-color: #fff;
  border-color: #ddd;
  border-width: 1px;
  border-radius: 0;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;
}
.form-control:focus {
  outline: 0;
  box-shadow: none;
}

select {
  appearance: none;
  width: 40px;
  border: 0;
  background: url("../images/ic_dropdown_small.svg") #fff center right no-repeat;
  cursor: pointer;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: auto;
  height: auto;
  transform: translateX(1px);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0;
}

.swiper-button-prev svg {
  transform: rotate(180deg) translateX(1px);
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--normal-color);
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn i {
  font-weight: normal;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.btn-second {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}
.btn-second:hover, .btn-second:focus, .btn-second:active {
  background-color: var(--second-color);
  border-color: var(--second-color);
  color: #fff;
}

.btn-second-outline {
  background-color: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
}
.btn-second-outline:hover, .btn-second-outline:focus, .btn-second-outline:active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.btn-link {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  padding: 0px 20px 0px 0px;
  text-decoration: none;
  z-index: 2;
  transition: var(--trans);
}
.btn-link:after {
  content: url("../images/ic_dropdown_small.svg");
  margin: 0px;
  position: absolute;
  top: 2px;
  right: 6px;
  transform: rotate(-90deg);
  transition: var(--trans);
}
.btn-link:hover {
  color: var(--accent-color);
}
.btn-link:hover:after {
  right: 4px;
}

.rating-star {
  color: #ffc120;
  font-size: 1.8rem;
  line-height: 1;
}

.section__title .section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .section__title .section__heading {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.section__title .section__heading .sectitle {
  font-family: var(--primary-font);
  font-size: 48px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .section__title .section__heading .sectitle {
    font-size: 2.4rem;
  }
}
.section__title .section__heading .subtitle {
  text-align: center;
  max-width: 670px;
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .section__title .section__heading .subtitle {
    margin-bottom: 30px;
  }
}
.section__title .section__heading .gr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .section__title .section__heading .gr-btn .btn {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .section__title .section__heading .gr-btn {
    margin-bottom: 30px;
  }
}
.section__title .section__heading .line-hotels {
  width: 4px;
  height: 95px;
  position: relative;
}
.section__title .section__heading .line-cap-hotel {
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  mask-image: url(../images/stroke_line.svg);
}

.line-hotels {
  width: 4px;
  height: 95px;
  position: relative;
}

.line-cap-hotel {
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  mask-image: url(../images/stroke_line.svg);
}

.lines__horizontal {
  position: absolute;
  top: 0;
  left: 40px;
  width: calc(100% - 80px);
  height: 4px;
}
@media (max-width: 991.98px) {
  .lines__horizontal {
    left: 16px;
    width: calc(100% - 32px);
  }
}

.lines-horizontal {
  position: absolute;
  left: 0;
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  mask-image: url(../images/stroke_line_ho_full.svg);
}

.lines__vertical {
  position: absolute;
  left: 40px;
  top: 0px;
  width: 4px;
  height: calc(100% + 8px);
}
@media (max-width: 991.98px) {
  .lines__vertical {
    left: 16px;
  }
}

.lines-vertical {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  mask-image: url(../images/stroke_line_full.svg);
}

.lines__vertical--top {
  position: absolute;
  top: -100px;
  width: 4px;
  height: 0;
  z-index: 2;
  background-color: var(--primary-color);
  mask-image: url(../images/stroke_line_ver_full.svg);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lines__vertical--top.top-left {
  left: 40px;
}
@media (max-width: 991.98px) {
  .lines__vertical--top.top-left {
    left: 16px;
  }
}
.lines__vertical--top.top-right {
  right: 40px;
}
@media (max-width: 991.98px) {
  .lines__vertical--top.top-right {
    right: 16px;
  }
}

.animation-line.active .lines__vertical--top {
  height: 100px;
}

.line__sectitle {
  position: absolute;
  top: 0;
  text-align: center;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  padding: 0 113px;
  z-index: 4;
  background: #fff;
}
.line__sectitle .sectitle {
  color: var(--primary-color);
  font-size: 40px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .line__sectitle .sectitle {
    font-size: 24px;
    white-space: nowrap;
  }
}
.line__sectitle.title-key-right {
  right: 44px;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .line__sectitle.title-key-right {
    left: 50%;
    right: unset;
    transform: translate(-50%, -50%);
  }
}
.line__sectitle.title-key-left {
  left: 44px;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .line__sectitle.title-key-left {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.line__sectitle.title-key-center {
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .line__sectitle {
    padding: 0 32px;
  }
}
@media (max-width: 767.98px) {
  .line__sectitle {
    padding: 0 32px;
  }
}

.line--half-right .lines__horizontal {
  width: calc(50% - 40px);
  left: 50%;
  transform: translateY(-100%);
}
@media (max-width: 991.98px) {
  .line--half-right .lines__horizontal {
    width: calc(50% - 16px);
  }
}
.line--half-right .lines-horizontal {
  left: 0;
  right: auto;
}
.line--half-right .lines__vertical {
  position: absolute;
  right: 40px;
  left: auto;
  top: -4px;
}
@media (max-width: 991.98px) {
  .line--half-right .lines__vertical {
    right: 16px;
  }
}
.line--half-right .line__sectitle {
  left: auto;
  right: 44px;
}
@media (max-width: 991.98px) {
  .line--half-right .line__sectitle {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}
.line--half-right .lines__vertical--top {
  display: none;
}

.line--half-left .lines__horizontal {
  width: calc(50% - 40px);
  left: auto;
  right: 50%;
  transform: translateY(100%);
}
@media (max-width: 991.98px) {
  .line--half-left .lines__horizontal {
    width: calc(50% - 16px);
  }
}
.line--half-left .lines-horizontal {
  left: auto;
  right: 0;
}
.line--half-left .lines__vertical {
  position: absolute;
  left: 40px !important;
  top: -4px;
}
@media (max-width: 991.98px) {
  .line--half-left .lines__vertical {
    right: 16px;
  }
}
.line--half-left .line__sectitle {
  left: 44px;
}
.line--half-left .lines__vertical--top {
  display: none;
}

.line-right .lines-horizontal {
  right: 0;
  left: auto;
}
.line-right .lines__vertical {
  left: 40px !important;
}
@media (max-width: 991.98px) {
  .line-right .lines__vertical {
    left: 16px !important;
  }
}
.line-right .lines__vertical--top {
  right: 40px;
  left: auto;
}
@media (max-width: 991.98px) {
  .line-right .lines__vertical--top {
    right: 16px;
  }
}

.line-left .lines-horizontal {
  left: 0 !important;
  right: auto !important;
}
.line-left .lines__vertical {
  right: 40px;
  left: auto;
}
@media (max-width: 991.98px) {
  .line-left .lines__vertical {
    right: 16px;
  }
}
.line-left .lines__vertical--top {
  left: 40px;
}
@media (max-width: 991.98px) {
  .line-left .lines__vertical--top {
    left: 16px;
  }
}

.line-show-verticaltop {
  padding-top: 100px;
}

.line-hidden-verticaltop {
  padding-top: 0 !important;
}
.line-hidden-verticaltop .lines__vertical--top {
  display: none;
}

.block-container-wrap {
  position: relative;
  padding: 0 40px;
}

.head__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}
.head__content-desc {
  font-size: 16px;
  color: var(--primary-color);
}
@media (max-width: 991.98px) {
  .head__content {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    padding-inline: 32px;
  }
}

.header {
  position: relative;
  z-index: 999;
  will-change: transform;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.08);
}
.header__main-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__bar .menu__toggle {
  font-size: 3rem;
  cursor: pointer;
}
.header__bar .menu__toggle i {
  color: var(--primary-color);
}
.header__languages .language {
  font-size: 1.6rem;
  font-weight: 500;
}
.header__logo {
  padding: 8px 0;
}
.header__logo img {
  width: 90px;
}
@media (max-width: 991.98px) {
  .header__cta .cta-signin {
    display: none;
  }
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mega__menu {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 500;
  height: calc(100vh - 50px);
  background-color: var(--primary-color);
  transition: opacity cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s, visibility cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  overflow-y: auto;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
}
.mega__menu.show {
  opacity: 1;
  visibility: visible;
}
.mega__menu-inner {
  display: flex;
  justify-content: stretch;
}
.mega__menu-left {
  padding: 96px 30px;
  width: 50%;
  display: flex;
  min-height: calc(100vh - var(--header-height));
  flex-wrap: wrap;
  flex-direction: column;
  gap: 50px;
}
.mega__menu-left .nav {
  display: block;
  width: 100%;
}
.mega__menu-left .nav li a {
  display: block;
  color: #fff;
  padding: 8px 0;
}
.mega__menu-left .nav li a:hover {
  color: var(--hover-color);
}
.mega__menu-left .nav .hasChildren {
  position: relative;
}
.mega__menu-left .nav .hasChildren > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega__menu-left .nav .hasChildren > a .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 28px;
  height: 28px;
}
.mega__menu-left .nav .hasChildren > a .arrow svg {
  transform: rotate(90deg);
}
.mega__menu-left .nav .hasChildren .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 3rem;
}
.mega__menu-left .nav .hasChildren.active > a .arrow {
  transform: rotate(180deg);
}
.mega__menu-left .nav .hasChildren.active .submenu {
  max-height: fit-content;
}
.mega__menu-left .gr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mega__menu-right {
  position: relative;
  display: flex;
  flex-grow: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mega__menu-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  right: 0;
  opacity: 1;
  z-index: -1;
  transition: none;
}
@media (max-width: 767.98px) {
  .mega__menu-left {
    width: 100%;
    padding: 40px 20px;
  }
  .mega__menu-right {
    display: none;
  }
}

.banner {
  position: relative;
}
.banner__swiper .item {
  position: relative;
}
.banner__swiper .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.banner__swiper .item img {
  width: 100%;
  height: 100%;
  min-height: 50vh;
  object-fit: cover;
}
.banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 980px;
  padding: 0 15px;
}
.banner__content .headline {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 768px) {
  .banner__content .headline {
    font-size: 4.8rem;
  }
}
@media (min-width: 1024px) {
  .banner__content .headline {
    font-size: 6rem;
  }
}
.banner__content .subheadline {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .banner__content .subheadline {
    font-size: 1.8rem;
  }
}
.banner__content .gr-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.banner__content .gr-cta .btn-outline {
  border-color: #fff;
  color: #fff;
}
.banner__content .gr-cta .btn-outline:hover {
  border-color: var(--primary-color);
}
.banner__page .banner__swiper .item img {
  height: 80vh;
}
@media (max-width: 991.98px) {
  .banner__page .banner__swiper .item img {
    height: 60vh;
  }
}

.booking-engine {
  position: relative;
  margin-top: -80px;
  z-index: 20;
}
.booking-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.booking-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.booking-tab {
  border: 0;
  background: #f5f5f5;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.booking-tab.active, .booking-tab:hover, .booking-tab:focus, .booking-tab:active {
  background: var(--primary-color);
  color: #fff;
}
.booking-form {
  display: none;
  gap: 20px;
  align-items: end;
}
.booking-form.active {
  display: flex;
}
.booking-field {
  flex: 1;
}
.booking-field label {
  display: block;
  font-size: 14px;
  color: #000;
  font-weight: bold;
  margin-bottom: 8px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  height: 56px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 16px;
}
.booking-field select {
  background: url(../images/ic_dropdown_small.svg) center right 16px no-repeat;
}
.booking-btn {
  height: 56px;
  min-width: 180px;
  border: none;
  border-radius: 12px;
  background: #0d3b66;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.booking-btn:hover {
  opacity: 0.9;
}

@media (max-width: 991px) {
  .booking-form {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-btn {
    width: 100%;
  }

  .booking-tabs {
    overflow-x: auto;
  }
}
.ecosystem-container {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.ecosystem-container .lines__horizontal {
  width: calc(50% - 40px);
  left: 50%;
  transform: translateY(-100%);
}
@media (max-width: 991.98px) {
  .ecosystem-container .lines__horizontal {
    width: calc(50% - 16px);
  }
}
.ecosystem-container .lines__vertical {
  position: absolute;
  right: 40px;
  left: auto;
  top: -4px;
}
@media (max-width: 991.98px) {
  .ecosystem-container .lines__vertical {
    right: 16px;
  }
}
.ecosystem-container.line-full .lines__horizontal {
  width: calc(100% - 80px);
  left: 40px;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .ecosystem-container.line-full .lines__horizontal {
    width: calc(100% - 32px);
    left: 16px;
  }
}
.ecosystem__list .item {
  position: relative;
}
.ecosystem__list .item .box__image {
  position: relative;
  overflow: hidden;
}
.ecosystem__list .item .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
  transition: var(--trans);
}
.ecosystem__list .item .box__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.ecosystem__list .item .box__content .title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.ecosystem__list .item .box__content .title a {
  color: inherit;
}
@media (min-width: 768px) {
  .ecosystem__list .item .box__content .title {
    font-size: 3.8rem;
  }
}
.ecosystem__list .item .box__content .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ecosystem__list .item .box__content .gr-btn {
  margin-top: 30px;
}
.ecosystem__list .item .box__content .gr-btn .btn-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0;
  text-decoration: underline;
}
.ecosystem__list .item .box__content .gr-btn .btn-link:after {
  display: none;
}
.ecosystem__list .item:hover .box__image img {
  transform: scale(1.05);
}
.ecosystem__list .item:hover .box__content .gr-btn .btn-link {
  margin-left: 10px;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .ecosystem__list .item .box__content {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.hotels__inner {
  position: relative;
  padding: 80px 0;
}
.hotels__list-page .item {
  margin-bottom: 30px;
}
.hotels__list-page .item:last-child {
  margin-bottom: 0;
}
.hotels .swiper-button-prev,
.hotels .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.hotels .swiper-button-prev svg path,
.hotels .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .hotels .swiper-button-prev,
.hotels .swiper-button-next {
    top: 190px;
  }
}
@media (max-width: 991.98px) {
  .hotels .swiper-button-prev,
.hotels .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.hotels .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .hotels .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.hotels .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .hotels .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
@media (max-width: 991.98px) {
  .hotels .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
    top: unset;
    height: 2px;
    bottom: 37px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .hotels .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}
.hotels__related-inner {
  position: relative;
  padding: 90px 0;
}
.hotels__related .swiper-button-prev,
.hotels__related .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.hotels__related .swiper-button-prev svg path,
.hotels__related .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .hotels__related .swiper-button-prev,
.hotels__related .swiper-button-next {
    top: 190px;
  }
}
@media (max-width: 991.98px) {
  .hotels__related .swiper-button-prev,
.hotels__related .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.hotels__related .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .hotels__related .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.hotels__related .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .hotels__related .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
@media (max-width: 991.98px) {
  .hotels__related .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
    top: unset;
    height: 2px;
    bottom: 37px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .hotels__related .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}

.card-hotel .box__image {
  position: relative;
  overflow: hidden;
}
.card-hotel .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 254/320;
}
.card-hotel .box__content {
  padding: 15px 0;
}
.card-hotel .box__content .position {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 14px;
  font-weight: 600;
}
.card-hotel .box__content .title {
  color: var(--primary-color);
  font-size: 2.4rem;
  margin-bottom: 0;
}
.card-hotel .box__content .title a {
  color: inherit;
}
@media (max-width: 767.98px) {
  .card-hotel .box__content .title {
    font-size: 1.8rem;
  }
}
.card-hotel.card-horizontal {
  display: flex;
  flex-wrap: wrap;
}
.card-hotel.card-horizontal .box__image {
  width: 30%;
  margin: 0;
}
.card-hotel.card-horizontal .box__image img {
  aspect-ratio: 1/1;
}
@media (max-width: 767.98px) {
  .card-hotel.card-horizontal .box__image {
    width: 100%;
  }
  .card-hotel.card-horizontal .box__image img {
    height: 230px;
  }
}
.card-hotel.card-horizontal .box__content {
  flex: 1;
  padding: 15px;
}
.card-hotel.card-horizontal .box__content .desc {
  margin: 10px 0;
}
@media (min-width: 992px) {
  .card-hotel.card-horizontal .box__content-grbtn {
    text-align: right;
  }
}
@media (max-width: 767.98px) {
  .card-hotel.card-horizontal .box__content {
    padding: 15px 0;
  }
}

.hotels__page-inner {
  position: relative;
  padding: 90px 0;
}

@media (max-width: 991.98px) {
  .hotels__detail-overview-container {
    padding: 0;
  }
}

.experience {
  background-color: var(--primary-color);
  position: relative;
  padding: 100px 0 0;
}
.experience .line__sectitle {
  background-color: var(--primary-color);
  color: #fff;
}
.experience .line__sectitle .sectitle {
  color: #fff;
}
.experience .lines-horizontal {
  background-color: #fff;
  mask-image: url(../images/stroke_line_ho_full.svg);
}
.experience .lines__vertical {
  right: 40px;
  left: auto;
}
@media (max-width: 991.98px) {
  .experience .lines__vertical {
    right: 16px;
  }
}
.experience .lines-vertical {
  background-color: #fff;
}
.experience__inner {
  position: relative;
  padding: 90px 0px 90px;
}
.experience__slider .swiper-slide {
  overflow: hidden;
}
.experience__slider .swiper-img {
  width: 100%;
  position: relative;
  aspect-ratio: unset;
}
@media (min-width: 1441px) {
  .experience__slider .swiper-img {
    width: 100%;
    aspect-ratio: 668/373;
    height: auto;
  }
}
@media (max-width: 991.98px) {
  .experience__slider-content {
    margin-top: 24px;
  }
  .experience__slider-content .item {
    max-width: 100%;
    text-align: center;
  }
}
.experience-container .lines__vertical--top {
  top: -100px;
  background: #fff;
}
.experience-container.active .lines__vertical--top {
  height: 100px;
}
.experience-container .experience__image {
  position: relative;
  width: 670px;
  aspect-ratio: unset;
}
@media (min-width: 1441px) {
  .experience-container .experience__image {
    width: 100%;
    aspect-ratio: 668/373;
  }
}
@media (max-width: 991.98px) {
  .experience-container .experience__image {
    width: 100%;
    margin-inline: auto;
  }
}
.experience-container .experience__image .swiper-pagination {
  top: unset;
  bottom: -40px;
  width: 350px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  border-radius: 12px;
}
.experience-container .experience__image .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #fff;
  overflow: hidden;
  border-radius: 12px;
}
.experience-container .experience__content {
  color: #fff;
}
.experience-container .experience__content .title {
  font-family: var(--primary-font);
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .experience-container .experience__content .title {
    font-size: 3.8rem;
    line-height: 1.3;
  }
}
@media (max-width: 767.98px) {
  .experience-container .experience__content .title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
.experience-container .experience__content .desc {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .experience-container .experience__content .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    top: unset;
    bottom: 36px;
    height: 2px;
    overflow: hidden;
    border-radius: 13px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .experience-container .experience__content .swiper-pagination-progressbar-fill {
    background-color: #fff;
  }
}
@media (max-width: 767.98px) {
  .experience-container .experience__content .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    top: unset;
    bottom: 36px;
    height: 2px;
    overflow: hidden;
    border-radius: 13px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .experience-container .experience__content .swiper-pagination-progressbar-fill {
    background-color: #fff;
  }
}
.experience-container .swiper-button-prev,
.experience-container .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* border: 1px solid var(--color-sub); */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  bottom: -69px;
  top: unset;
  transition: all 0.5s ease-in-out;
}
.experience-container .swiper-button-prev svg path,
.experience-container .swiper-button-next svg path {
  stroke: #fff;
}
@media (max-width: 991.98px) {
  .experience-container .swiper-button-prev,
.experience-container .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.experience-container .swiper-button-prev {
  left: 70px;
}
@media (max-width: 991.98px) {
  .experience-container .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.experience-container .swiper-button-next {
  left: unset;
  right: 70px;
}
@media (max-width: 991.98px) {
  .experience-container .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}

.offers-container {
  padding: 0 40px 130px;
}
.offers__inner {
  position: relative;
  padding: 90px 0px 0px;
}
.offers .swiper-pagination {
  top: unset;
  width: 350px;
  height: 2px;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  background-color: rgba(93, 39, 13, 0.2);
}
@media (max-width: 991.98px) {
  .offers .swiper-pagination {
    width: 150px;
  }
}
.offers .swiper-pagination-progressbar-fill {
  background-color: var(--primary-color);
  border-radius: 50px;
  overflow: hidden;
}
.offers .swiper-button-prev,
.offers .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  top: 190px;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1441px) {
  .offers .swiper-button-prev,
.offers .swiper-button-next {
    top: 270px;
  }
}
.offers .swiper-button-prev svg path,
.offers .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (max-width: 991.98px) {
  .offers .swiper-button-prev,
.offers .swiper-button-next {
    border: none;
    top: auto;
    bottom: -86px;
  }
}
.offers .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .offers .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
.offers .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .offers .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.offers__detail-inner {
  position: relative;
  padding: 90px 0;
}
.offers__related-inner {
  position: relative;
  padding: 90px 0;
}
.offers__related .swiper-pagination {
  top: unset;
  width: 350px;
  height: 2px;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  background-color: rgba(93, 39, 13, 0.2);
}
@media (max-width: 991.98px) {
  .offers__related .swiper-pagination {
    width: 150px;
  }
}
.offers__related .swiper-pagination-progressbar-fill {
  background-color: var(--primary-color);
  border-radius: 50px;
  overflow: hidden;
}
.offers__related .swiper-button-prev,
.offers__related .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  top: 190px;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1441px) {
  .offers__related .swiper-button-prev,
.offers__related .swiper-button-next {
    top: 270px;
  }
}
.offers__related .swiper-button-prev svg path,
.offers__related .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (max-width: 991.98px) {
  .offers__related .swiper-button-prev,
.offers__related .swiper-button-next {
    border: none;
    top: auto;
    bottom: -86px;
  }
}
.offers__related .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .offers__related .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
.offers__related .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .offers__related .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}

.card-offer .box__image {
  width: 100%;
  aspect-ratio: 350/440;
  margin-bottom: 24px;
  position: relative;
}
.card-offer .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-offer .box__content .position {
  font-size: 13px;
  font-weight: 600;
  line-height: 14px;
  color: var(--primary-color);
  margin-bottom: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-offer .box__content .title {
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-offer .box__content .title a {
  color: inherit;
}
@media (max-width: 767.98px) {
  .card-offer .box__content .title {
    font-size: 1.8rem;
  }
}
.card-offer:hover .box__image img {
  display: inline;
}
.card-offer:hover .box__content .position,
.card-offer:hover .box__content .title {
  color: var(--second-color);
}

.membership .lines__vertical {
  right: 40px;
  left: auto;
}
@media (max-width: 991.98px) {
  .membership .lines__vertical {
    right: 16px;
  }
}
.membership__inner {
  padding: 90px 0;
}
.membership__content {
  margin-bottom: 30px;
}
.membership__content .subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}
.membership__content .sectitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--primary-font);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 992px) {
  .membership__content .sectitle {
    font-size: 38px;
  }
}
.membership__content .box-benefits {
  margin-bottom: 40px;
}
.membership__content .box-benefits ul {
  list-style: disc;
  margin-left: 20px;
}

.inspirations-container {
  padding: 0 40px 130px;
}
.inspirations__inner {
  position: relative;
  padding: 90px 0 0;
}
.inspirations .swiper-pagination {
  top: unset;
  width: 350px;
  height: 2px;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  background-color: rgba(93, 39, 13, 0.2);
}
@media (max-width: 991.98px) {
  .inspirations .swiper-pagination {
    width: 150px;
  }
}
.inspirations .swiper-pagination-progressbar-fill {
  background-color: var(--primary-color);
  border-radius: 50px;
  overflow: hidden;
}
.inspirations .swiper-button-prev,
.inspirations .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  top: 190px;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1441px) {
  .inspirations .swiper-button-prev,
.inspirations .swiper-button-next {
    top: 270px;
  }
}
.inspirations .swiper-button-prev svg path,
.inspirations .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (max-width: 991.98px) {
  .inspirations .swiper-button-prev,
.inspirations .swiper-button-next {
    border: none;
    top: auto;
    bottom: -86px;
  }
}
.inspirations .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .inspirations .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
.inspirations .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .inspirations .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}

.blogs__inner {
  position: relative;
  padding: 90px 0;
}
.blogs__hero-inner {
  position: relative;
  margin-bottom: 50px;
}
.blogs__hero .hero-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .blogs__hero .hero-feature {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.blogs__hero .hero-feature .hero-image {
  height: 100%;
}
.blogs__hero .hero-feature .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
}
.blogs__hero .hero-feature .hero-content .tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c7a96b;
  font-size: 13px;
}
.blogs__hero .hero-feature .hero-content .title {
  font-size: 38px;
  margin: 15px 0;
  transition: var(--trans);
}
.blogs__hero .hero-feature .hero-content .desc {
  color: #666;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .blogs__hero .hero-feature .hero-content .title {
    font-size: 2.4rem;
  }
  .blogs__hero .hero-feature .hero-content .desc {
    font-size: 1.6rem;
  }
}
@media (max-width: 767.98px) {
  .blogs__hero .hero-feature .hero-content .title {
    font-size: 1.8rem;
  }
}
.blogs__detail-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}
.blogs__detail-foot .block-column {
  width: 100%;
}
@media (min-width: 768px) {
  .blogs__detail-foot .block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
}
.blogs__detail-foot .post-author {
  display: flex;
  align-items: center;
  gap: 24px;
}
.blogs__detail-foot .post-author .block-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.blogs__detail-foot .post-author .block-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs__detail-foot .post-author .block-text .title {
  font-size: 1.8rem;
  font-weight: 600;
}
.blogs__detail-foot .post-author .block-text .post-date {
  font-size: 1.4rem;
  color: #747474;
}
.blogs__related-container {
  padding: 0 40px 130px;
}
.blogs__related-inner {
  position: relative;
  padding: 90px 0 0;
}
.blogs__related .swiper-pagination {
  top: unset;
  width: 350px;
  height: 2px;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  background-color: rgba(93, 39, 13, 0.2);
}
@media (max-width: 991.98px) {
  .blogs__related .swiper-pagination {
    width: 150px;
  }
}
.blogs__related .swiper-pagination-progressbar-fill {
  background-color: var(--primary-color);
  border-radius: 50px;
  overflow: hidden;
}
.blogs__related .swiper-button-prev,
.blogs__related .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  top: 190px;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1441px) {
  .blogs__related .swiper-button-prev,
.blogs__related .swiper-button-next {
    top: 270px;
  }
}
.blogs__related .swiper-button-prev svg path,
.blogs__related .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (max-width: 991.98px) {
  .blogs__related .swiper-button-prev,
.blogs__related .swiper-button-next {
    border: none;
    top: auto;
    bottom: -86px;
  }
}
.blogs__related .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .blogs__related .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
.blogs__related .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .blogs__related .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}

.share-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.share-group .share-label {
  font-weight: 600;
}
.share-group .share-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: #fff;
  transition: var(--trans);
}
.share-group .share-list a:hover {
  background-color: var(--accent-color);
}

.group-block {
  position: relative;
  background: #f5f6f7;
  padding: 15px;
}
.group-block-head {
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 30px;
}
.group-block-head .head-title {
  font-size: 2.4rem;
  color: #000;
  font-family: var(--primary-font);
}
.group-block-content {
  display: block;
}

.card-blog .box__image {
  margin-bottom: 15px;
}
.card-blog .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-blog .box__content .date-post {
  font-size: 14px;
  color: var(--second-color);
  margin-bottom: 5px;
}
.card-blog .box__content .title {
  font-size: 24px;
  color: var(--primary-color);
  font-family: var(--primary-font);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}
.card-blog .box__content .title a {
  color: inherit;
}
.card-blog .box__content .title:hover {
  color: var(--hover-color);
}
@media (max-width: 767.98px) {
  .card-blog .box__content .title {
    font-size: 1.8rem;
  }
}
.card-blog .box__content .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  margin-top: 10px;
}
.card-blog.type-inline {
  position: relative;
}
.card-blog.type-inline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--primary-color) 100%);
}
.card-blog.type-inline .box__image {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.card-blog.type-inline .box__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: #fff;
  padding: 15px;
  z-index: 1;
}
.card-blog.type-inline .box__content .date-post {
  color: inherit;
}
.card-blog.type-inline .box__content .title {
  color: inherit;
  font-size: 1.8rem;
  margin-bottom: 0;
}
.card-blog.type-inline .box__content .desc {
  display: none;
}
.card-blog.type-inline .box__content .gr-btn {
  display: none;
}
.card-blog.type-horizontal {
  display: flex;
  gap: 15px;
}
.card-blog.type-horizontal .box__image {
  flex: 0 0 30%;
  margin-bottom: 0;
}
.card-blog.type-horizontal .box__image img {
  aspect-ratio: 1/1;
}
.card-blog.type-horizontal .box__content {
  flex: 1;
}
.card-blog.text-small .box__content .title {
  font-size: 1.8rem;
}

.booking__cta {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.booking__cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  background: linear-gradient(rgba(71, 18, 103, 0.2) 50%, var(--primary-color) 100%);
}
.booking__cta-inner {
  position: relative;
  text-align: center;
  padding: 90px 0;
  color: #fff;
  z-index: 1;
}
.booking__cta .subtitle {
  font-size: 24px;
}
.booking__cta .title {
  font-size: 72px;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--primary-font);
}
@media (max-width: 991.98px) {
  .booking__cta .title {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
.booking__cta .gr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.about-container {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.about-container .lines__horizontal {
  width: calc(50% - 40px);
  left: 50%;
  transform: translateY(-100%);
}
@media (max-width: 991.98px) {
  .about-container .lines__horizontal {
    width: calc(50% - 16px);
  }
}
.about-container .lines__vertical {
  position: absolute;
  right: 40px;
  left: auto;
  top: -4px;
}
@media (max-width: 991.98px) {
  .about-container .lines__vertical {
    right: 16px;
  }
}
.about__inner .box__content {
  text-align: justify;
}
.about__inner .box__image img,
.about__inner .box__image iframe,
.about__inner .box__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.stats {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background: var(--bg-gradient) !important;
}
.stats__inner {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.stats__inner .item {
  text-align: center;
  color: #fff;
}
@media (max-width: 991.98px) {
  .stats__inner .item {
    margin-bottom: 15px;
  }
}
.stats__inner .item-num {
  font-size: 5rem;
  font-weight: 600;
  color: var(--accent-color);
}
@media (max-width: 991.98px) {
  .stats__inner .item-num {
    font-size: 3.8rem;
  }
}
.stats__inner .item-title {
  font-size: 1.8rem;
  font-weight: 500;
}

.destinations {
  padding: 100px 0 0;
}
@media (max-width: 991.98px) {
  .destinations-container {
    padding: 0;
  }
}
.destinations-container .lines__vertical--top {
  top: -100px;
}
.destinations-container.active .lines__vertical--top {
  height: 100px;
}
.destinations .lines__vertical {
  left: auto;
  right: 40px;
}
@media (max-width: 991.98px) {
  .destinations .lines__vertical {
    right: 16px;
  }
}
.destinations__inner {
  position: relative;
  padding: 80px 0;
}
.destinations__list .item .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.destinations__list .item .box__content {
  padding: 10px;
}
.destinations__list .item .box__content .title {
  font-size: 24px;
  color: var(--primary-color);
  font-family: var(--primary-font);
  transition: var(--trans);
  margin-bottom: 0;
}
.destinations__list .item .box__content .title a {
  color: inherit;
}
.destinations__list .item.type-inline {
  position: relative;
}
.destinations__list .item.type-inline .box__image {
  position: relative;
}
.destinations__list .item.type-inline .box__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}
.destinations__list .item.type-inline .box__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  color: #fff;
}
.destinations__list .item.type-inline .box__content .title {
  color: inherit;
  text-align: center;
}
.destinations__list .item.type-inline:hover .box__content .title {
  color: var(--accent-color);
}
.destinations .swiper-pagination {
  top: unset;
  width: 350px;
  height: 2px;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  background-color: rgba(93, 39, 13, 0.2);
}
@media (max-width: 991.98px) {
  .destinations .swiper-pagination {
    width: 150px;
    bottom: 37px;
  }
}
.destinations .swiper-pagination-progressbar-fill {
  background-color: var(--primary-color);
  border-radius: 50px;
  overflow: hidden;
}
.destinations .swiper-button-prev,
.destinations .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  top: 190px;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1441px) {
  .destinations .swiper-button-prev,
.destinations .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
.destinations .swiper-button-prev svg path,
.destinations .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (max-width: 991.98px) {
  .destinations .swiper-button-prev,
.destinations .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.destinations .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .destinations .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
.destinations .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .destinations .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}

.whychoose .lines-horizontal {
  right: 0;
  left: auto;
}
.whychoose__inner {
  position: relative;
  padding: 80px 0;
}
.whychoose__list .item {
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.35);
  padding: 40px 20px;
  background: linear-gradient(to right bottom, #481267, #70209f, #f02382);
  height: 100%;
  color: #fff;
}
.whychoose__list .item .title {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--primary-font);
  margin-bottom: 15px;
  text-align: center;
}

.about-timeline__inner {
  padding: 90px 0;
}

.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
  transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  .timeline::before {
    left: 20px;
  }
}
.timeline__item {
  position: relative;
  width: 50%;
  margin-bottom: 45px;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__item::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d6b36b;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #d6b36b;
  z-index: 2;
}
.timeline__item:nth-child(odd) {
  padding-right: 80px;
  text-align: right;
}
.timeline__item:nth-child(odd)::before {
  right: -9px;
}
.timeline__item:nth-child(even) {
  margin-left: auto;
  padding-left: 80px;
}
.timeline__item:nth-child(even)::before {
  left: -9px;
}
@media (max-width: 991.98px) {
  .timeline__item {
    width: 100%;
    padding-left: 60px !important;
    padding-right: 0 !important;
    margin-left: 0;
    text-align: left !important;
  }
  .timeline__item::before {
    left: 11px !important;
    right: auto !important;
  }
}
@media (max-width: 767.98px) {
  .timeline__item {
    padding-left: 40px !important;
  }
}
.timeline__content {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.timeline__content .year {
  display: block;
  font-size: 48px;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 991.989px) {
  .timeline__content .year {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .timeline__content .year {
    font-size: 28px;
  }
}
.timeline__content h3 {
  margin-bottom: 12px;
}
.timeline__content p {
  margin: 0;
}
@media (max-width: 767.98px) {
  .timeline__content {
    padding: 20px;
  }
}

@media (max-width: 991.98px) {
  .reviews-container {
    padding: 0;
  }
}
.reviews__inner {
  position: relative;
  padding: 90px 0;
}
.reviews .swiper-button-prev,
.reviews .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.reviews .swiper-button-prev svg path,
.reviews .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .reviews .swiper-button-prev,
.reviews .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .reviews .swiper-button-prev,
.reviews .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.reviews .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .reviews .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.reviews .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .reviews .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
@media (max-width: 991.98px) {
  .reviews .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
    top: unset;
    height: 2px;
    bottom: 37px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .reviews .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}

.card-review {
  position: relative;
  padding: 40px 30px;
  background: var(--primary-color);
  color: #fff;
}
.card-review .rating-star {
  margin-bottom: 15px;
}
.card-review .desc {
  font-size: 16px;
  margin-bottom: 20px;
}
.card-review .author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.card-review .author .name {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
}
.card-review .author .position {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
}
.card-review .author .position::after {
  content: "-";
  position: absolute;
  top: 0px;
  left: 7px;
  color: var(--accent-color);
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .card-review {
    padding: 40px 20px;
  }
}

.room__list .swiper-button-prev,
.room__list .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.room__list .swiper-button-prev svg path,
.room__list .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .room__list .swiper-button-prev,
.room__list .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .room__list .swiper-button-prev,
.room__list .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.room__list .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .room__list .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.room__list .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .room__list .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
.room__list .swiper-pagination {
  top: unset;
  bottom: 36px;
  width: 350px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  height: 2px;
  border-radius: 12px;
  background-color: #5d270d33;
}
.room__list .swiper-pagination-progressbar-fill {
  background-color: var(--primary-color);
  overflow: hidden;
  border-radius: 22px;
}
@media (max-width: 991.98px) {
  .room__list .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
    top: unset;
    height: 2px;
    bottom: 37px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .room__list .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}

.card-room .box__image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 545/307;
}
.card-room .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-room .box__content {
  background-color: var(--primary-color);
  padding: 20px;
  color: #fff;
}
.card-room .box__content .title {
  font-size: 24px;
  color: inherit;
  transition: all 0.5s ease-in-out;
}
.card-room .box__content .title a {
  color: inherit;
}
@media (max-width: 767.98px) {
  .card-room .box__content .title {
    font-size: 1.8rem;
  }
}
.card-room .box__content .desc {
  font-size: 16px;
  margin-bottom: 15px;
}
.card-room .box__content .price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.card-room .box__content .price-label {
  font-weight: 600;
}
.card-room .box__content .price-value {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
}

.facilities__inner {
  padding: 90px 0;
}
.facilities__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 60px 10px;
}
.facilities__list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.facilities__list .item-icon {
  margin-bottom: 16px;
}
.facilities__list .item-icon img {
  height: 72px;
}
.facilities__list .item-text {
  font-size: 16px;
  color: var(--primary-color);
}
@media (max-width: 991.98px) {
  .facilities__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px 10px;
  }
}
@media (max-width: 767.98px) {
  .facilities__list {
    grid-template-columns: 1fr 1fr;
    gap: 48px 10px;
  }
}

.locations {
  padding: 100px 0 0;
}
.locations__inner {
  padding: 90px 0;
}
.locations__nearby-head {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--primary-color);
  margin-bottom: 24px;
}
.locations__nearby-desc {
  margin-bottom: 10px;
}
.locations__nearby-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}
.locations__nearby-list li + li {
  margin-top: 5px;
}

.introduction__inner {
  position: relative;
  padding: 90px 0;
}
.introduction__list .box__content .title {
  font-size: 24px;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 24px;
}
.introduction__list .box__content .desc {
  margin-bottom: 24px;
}
.introduction__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 578/430;
}

.world__destination-inner {
  position: relative;
  padding: 90px 0;
}
.world__destination-list {
  display: block;
}
.world__featured {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.world__featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.world__featured-inner {
  position: relative;
  text-align: center;
  padding: 90px 0;
  color: #fff;
  z-index: 1;
}
.world__featured-inner .subtitle {
  font-size: 24px;
}
.world__featured-inner .title {
  font-size: 72px;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--primary-font);
}
@media (max-width: 991.98px) {
  .world__featured-inner .title {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
.world__featured-inner .btn-main {
  margin-top: 30px;
  font-weight: bold;
}
.world__related-inner {
  position: relative;
  padding: 90px 0;
}
.world__related .swiper-button-prev,
.world__related .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.world__related .swiper-button-prev svg path,
.world__related .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .world__related .swiper-button-prev,
.world__related .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .world__related .swiper-button-prev,
.world__related .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.world__related .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .world__related .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.world__related .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .world__related .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
@media (max-width: 991.98px) {
  .world__related .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
    top: unset;
    height: 2px;
    bottom: 37px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .world__related .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}

.world-card .box__image {
  margin-bottom: 15px;
}
.world-card .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.world-card .box__content .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--primary-font);
  transition: var(--trans);
}
.world-card .box__content .title a {
  color: inherit;
}
.world-card .box__content .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.world-card:hover .box__content .title {
  color: var(--accent-color);
}

.benfit {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--primary-color);
}
.benfit:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  background: linear-gradient(rgba(71, 18, 103, 0.2) 50%, var(--primary-color) 100%);
}
.benfit__inner {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.benfit__inner .item {
  text-align: center;
  color: #fff;
}
.benfit__inner .item-icon {
  font-size: 4rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .benfit__inner .item-icon {
    font-size: 7rem;
  }
}
.benfit__inner .item-title {
  font-size: 1.8rem;
  font-weight: 500;
}

.events {
  padding: 100px 0 0;
}
.events__inner {
  position: relative;
  padding: 90px 0;
}
.events .swiper-button-prev,
.events .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.events .swiper-button-prev svg path,
.events .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .events .swiper-button-prev,
.events .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .events .swiper-button-prev,
.events .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.events .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .events .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.events .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .events .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
@media (max-width: 991.98px) {
  .events .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
    top: unset;
    height: 2px;
    bottom: 37px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .events .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}

.event-card {
  position: relative;
  width: 100%;
  height: 100%;
}
.event-card .box__image {
  position: relative;
  height: 530px;
}
.event-card .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.event-card .box__content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  max-width: 450px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 24px;
  backdrop-filter: blur(8px);
  border-left: 3px solid #E3C17B;
  transition: var(--trans);
}
.event-card .box__content .title {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-family: var(--primary-font);
  transition: var(--trans);
}
.event-card .box__content .title a {
  color: inherit;
}
.event-card .box__content .desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}
.event-card:hover .box__content {
  transform: translateY(20px);
}
.event-card:hover .box__content .title {
  color: var(--accent-color);
}

.gallery {
  padding: 100px 0 0;
}
@media (max-width: 991.98px) {
  .gallery-container {
    padding: 0;
  }
}
.gallery__inner {
  position: relative;
  padding: 90px 0;
}
.gallery__grid {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 175px;
  grid-auto-flow: dense;
}
.gallery__grid a {
  position: relative;
  overflow: hidden;
}
.gallery__grid a:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__grid a:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.gallery__grid a:hover img {
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  .gallery__grid {
    grid-auto-rows: 130px;
  }
}

.quick-facts {
  background: var(--bg-gradient);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.quick-facts__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991.98px) {
  .quick-facts__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .quick-facts__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }
}
.quick-facts .fact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 140px;
  padding: 30px 40px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.quick-facts .fact-item.show {
  opacity: 1;
  transform: translateY(0);
}
.quick-facts .fact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 60px;
  background: white;
  transform: translateY(-50%);
}
.quick-facts .fact-item .fact-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
}
.quick-facts .fact-item .fact-content .label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.quick-facts .fact-item .fact-content .title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-color);
  font-family: var(--primary-font);
}
@media (max-width: 991.98px) {
  .quick-facts .fact-item:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .quick-facts .fact-item {
    min-height: auto;
    padding: 24px 0;
    padding: 0;
  }
  .quick-facts .fact-item::after {
    display: none;
  }
}

.activities__inner {
  padding: 90px 0;
}
.activities__list .item {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 50px;
}
.activities__list .item:last-child {
  margin-bottom: 0;
}
.activities__list .item .box__image {
  overflow: hidden;
  border-radius: 24px;
}
.activities__list .item .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.activities__list .item .box__content {
  display: block;
}
.activities__list .item .box__content .itemnumber {
  display: block;
  font-size: 120px;
  line-height: 1;
  color: rgba(227, 193, 123, 0.5);
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .activities__list .item .box__content .itemnumber {
    font-size: 80px;
  }
}
.activities__list .item .box__content .title {
  margin: 10px 0 20px;
  font-size: 4.8rem;
  line-height: 1.2;
  font-family: var(--primary-font);
}
@media (max-width: 767.98px) {
  .activities__list .item .box__content .title {
    font-size: 2.4rem;
  }
}
.activities__list .item .box__content .desc {
  max-width: 480px;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .activities__list .item .box__content .desc {
    font-size: 1.6rem;
  }
}
.activities__list .item .box__content .btn-link {
  font-size: 1.8rem;
}
.activities__list .item:hover .box__image img {
  transform: scale(1.05);
}
.activities__list .item:nth-child(even) .box__content {
  text-align: right;
}
@media (min-width: 768px) {
  .activities__list .item:nth-child(even) {
    grid-template-columns: 1fr 1.3fr;
  }
  .activities__list .item:nth-child(even) .box__image {
    order: 2;
  }
  .activities__list .item:nth-child(even) .box__content {
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .activities__list .item {
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .activities__list .item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.place__types-inner {
  position: relative;
  padding: 90px 0;
}
.place__types-card .box__image {
  position: relative;
  margin-bottom: 10px;
}
.place__types-card .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
}
.place__types-card .box__content {
  text-align: center;
}
.place__types-card .box__content .title {
  font-size: 2.4rem;
  font-family: var(--primary-font);
  margin-bottom: 10px;
}
.place__page-inner {
  position: relative;
  padding: 90px 0;
}
.place__page-list {
  display: block;
}
.place__facilities-inner {
  position: relative;
  padding: 90px 0;
}
.place__facilities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767.98px) {
  .place__facilities-list {
    grid-template-columns: 1fr;
  }
}
.place__facilities-item {
  padding: 50px;
  background: var(--bg-color);
  border-radius: 24px;
  transition: var(--trans);
}
.place__facilities-item .item-icon {
  font-size: 3rem;
  color: var(--accent-color);
}
@media (min-width: 768px) {
  .place__facilities-item .item-icon {
    font-size: 5.6rem;
  }
}
.place__facilities-item .item-head {
  font-size: 2.4rem;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 15px;
  transition: var(--trans);
}
.place__facilities-item:hover {
  transform: translateY(-10px);
}
@media (max-width: 767.98px) {
  .place__facilities-item {
    padding: 30px 20px;
  }
}
.place__related-inner {
  position: relative;
  padding: 90px 0;
}
.place__related .swiper-button-prev,
.place__related .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.place__related .swiper-button-prev svg path,
.place__related .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .place__related .swiper-button-prev,
.place__related .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .place__related .swiper-button-prev,
.place__related .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.place__related .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .place__related .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.place__related .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .place__related .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
@media (max-width: 991.98px) {
  .place__related .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
    top: unset;
    height: 2px;
    bottom: 37px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .place__related .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}

.place-card .box__image {
  margin-bottom: 15px;
}
.place-card .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.place-card .box__content .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--primary-font);
  transition: var(--trans);
}
.place-card .box__content .title a {
  color: inherit;
}
.place-card .box__content .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.place-card .box__content .desc ul {
  list-style: disc;
  margin-left: 20px;
}
.place-card:hover .box__content .title {
  color: var(--accent-color);
}

.spaces__inner {
  position: relative;
  padding: 90px 0;
}
.spaces .swiper-button-prev,
.spaces .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.spaces .swiper-button-prev svg path,
.spaces .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .spaces .swiper-button-prev,
.spaces .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .spaces .swiper-button-prev,
.spaces .swiper-button-next {
    border: none;
    top: auto;
    bottom: 10px;
  }
}
.spaces .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .spaces .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.spaces .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .spaces .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
@media (max-width: 991.98px) {
  .spaces .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
    top: unset;
    height: 2px;
    bottom: 37px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .spaces .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}

.card-space .box__image {
  position: relative;
  margin-bottom: 15px;
}
.card-space .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
}
@media (min-width: 768px) {
  .card-space .box__image img {
    height: 500px;
  }
}
.card-space .box__content .title {
  font-size: 2.4rem;
  color: var(--primary-color);
  font-family: var(--primary-font);
}

.start__journey {
  padding-top: 100px;
}
.start__journey-inner {
  position: relative;
  padding: 90px 0;
}
.start__journey-list {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.start__journey-list::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 40px;
  height: 2px;
  background: #ddd;
}
.start__journey-list .item-step {
  position: relative;
  z-index: 2;
  text-align: center;
  background: white;
}
.start__journey-list .item-step span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 22px;
}
.start__journey-list .item-step .title {
  font-size: 1.8rem;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .start__journey-list {
    flex-direction: column;
    gap: 20px;
  }
}

.success-stories .story__inner {
  position: relative;
  padding: 90px 0 40px;
}
.success-stories .story__slider .item {
  position: relative;
}
.success-stories .story__slider .item .box__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.success-stories .story__slider .item .box__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}
.success-stories .swiper-button-prev,
.success-stories .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 130px;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.success-stories .swiper-button-prev svg path,
.success-stories .swiper-button-next svg path {
  stroke: var(--primary-color);
}
@media (min-width: 1441px) {
  .success-stories .swiper-button-prev,
.success-stories .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .success-stories .swiper-button-prev,
.success-stories .swiper-button-next {
    border: none;
    top: auto;
    bottom: -55px;
  }
}
.success-stories .swiper-button-prev {
  left: 25px;
}
@media (max-width: 991.98px) {
  .success-stories .swiper-button-prev {
    left: 50%;
    transform: translateX(-130px);
  }
}
.success-stories .swiper-button-next {
  right: 25px;
}
@media (max-width: 991.98px) {
  .success-stories .swiper-button-next {
    right: 50%;
    transform: translateX(130px);
  }
}
@media (max-width: 991.98px) {
  .success-stories .swiper-pagination {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
    top: unset;
    height: 2px;
    overflow: hidden;
    background-color: #5d270d33;
  }
  .success-stories .swiper-pagination-progressbar-fill {
    background-color: var(--primary-color);
  }
}

.packages {
  padding: 100px 0 0;
}
.packages__inner {
  position: relative;
  padding: 90px 0;
}
.packages .package-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991.98px) {
  .packages .package-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .packages .package-list {
    grid-template-columns: 1fr;
  }
}
.packages .package-item {
  border: 1px solid #ccc;
  border-radius: 24px;
  padding: 50px;
}
@media (max-width: 767.98px) {
  .packages .package-item {
    padding: 30px 20px;
  }
}
.packages .package-item h3 {
  font-size: 2.4rem;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 25px;
}
.packages .package-item ul {
  list-style: none;
}
.packages .package-item li {
  margin-bottom: 12px;
}

.place__contact-inner {
  padding: 90px 0;
}
.place__contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 991.98px) {
  .place__contact .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.place__contact .contact-content {
  position: relative;
}
.place__contact .contact-content h2 {
  font-size: 56px;
  line-height: 1.2;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
@media (max-width: 991.98px) {
  .place__contact .contact-content h2 {
    font-size: 3.2rem;
  }
}
.place__contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.place__contact-form input,
.place__contact-form select,
.place__contact-form textarea {
  width: 100%;
  height: 56px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 16px;
}
.place__contact-form textarea {
  padding: 16px;
  min-height: 180px;
}

/* HALLS */
.halls__inner {
  position: relative;
  padding: 90px 0;
}
.halls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.halls-grid .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--trans);
}
.halls-grid .item .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.halls-grid .item .box__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
}
.halls-grid .item .box__content .title {
  font-size: 2.4rem;
  color: #fff;
  font-family: var(--primary-font);
}
.halls-grid .item .box__content .desc {
  font-size: 14px;
  color: #fff;
}
.halls-grid .item:hover {
  transform: translateY(-10px);
}
@media (max-width: 991.98px) {
  .halls-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .halls-grid {
    grid-template-columns: 1fr;
  }
}

.space__feature-inner {
  position: relative;
  padding: 90px 0 0;
}
.space__feature-info .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
}
.space__feature-info .box__content .title {
  font-size: 2.4rem;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 15px;
}
.space__feature-info .box__content .desc ul {
  list-style: disc;
  margin-left: 20px;
}
.space__feature-info .box__content .desc ul li + li {
  margin-top: 5px;
}

.space__vip-inner {
  position: relative;
  padding: 90px 0;
}
.space__vip-info .box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
}
.space__vip-info .box__content .title {
  font-size: 2.4rem;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 15px;
}
.space__vip-info .box__content .desc ul {
  list-style: disc;
  margin-left: 20px;
}
.space__vip-info .box__content .desc ul li + li {
  margin-top: 5px;
}

.blocks-inview {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.blocks-inview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.blocks-inview-inner {
  position: relative;
  text-align: center;
  padding: 90px 0;
  color: #fff;
  z-index: 1;
}
.blocks-inview-inner .subtitle {
  font-size: 24px;
}
.blocks-inview-inner .title {
  font-size: 52px;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--primary-font);
}
@media (max-width: 991.98px) {
  .blocks-inview-inner .title {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .blocks-inview-inner .title {
    font-size: 2.8rem;
  }
}
.blocks-inview-inner .btn-main {
  margin-top: 30px;
  font-weight: bold;
}

.contact__inner {
  position: relative;
  padding: 90px 0;
}
.contact__block-content .title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact__block-content .title {
    font-size: 5rem;
  }
}
.contact__block-content .desc {
  margin-bottom: 15px;
}
.contact__block-content .list__infor li {
  margin-bottom: 10px;
}
.contact__block-content .list__infor li:last-child {
  margin-bottom: 0;
}

.recruitment__inner {
  position: relative;
  padding: 90px 0;
}
@media (max-width: 991.98px) {
  .recruitment-container {
    padding: 0;
  }
}
.recruitment__block-sidebar {
  position: sticky;
  top: 5px;
}

.ant-block__inner {
  border-radius: 4px;
  padding: 16px 20px;
  box-shadow: 0 0 5px #00000040;
  border-radius: 14px;
  margin-bottom: 30px;
}

.career-cta {
  background: linear-gradient(135deg, #003768, #894bb4);
  border-radius: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.career-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/pattern-stars.png");
  opacity: 0.1;
}
.career-cta .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.career-cta .cta-content .title {
  font-size: 28px;
  margin-bottom: 10px;
}
.career-cta .btn-apply {
  margin-top: 15px;
  padding: 12px 24px;
  background: #fff;
  color: #2b0a6d;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}
.career-cta .btn-apply:hover {
  transform: scale(1.05);
}

.career-list {
  background: #faf9f9;
  border-radius: 14px;
  padding: 20px;
}
.career-list .title-head {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
@media (max-width: 767.98px) {
  .career-list {
    padding: 0;
  }
}

.career-detail {
  position: relative;
  padding: 16px 17px;
  box-shadow: 0 0 5px #00000040;
  border-radius: 4px;
  background-color: #fff;
}
.career-detail .job-item {
  padding: 0 0 17px;
  margin-bottom: 20px;
  cursor: unset;
}
.career-detail .job-item:hover {
  transform: translate(0);
}
.career-detail .job-summary {
  background-color: #f9f9f9;
  padding: 15px 18px;
  border: 1px dashed #eaeaf0;
  border-radius: 4px;
  list-style: none;
  margin: 0 0 25px;
  font-size: 14px;
}
.career-detail .job-summary li {
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.career-detail .job-summary li:last-child {
  margin-bottom: 0;
}
.career-detail .job-summary li img {
  width: 15px;
}
.career-detail .job-detail .title-head {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.career-detail .job-detail .content ul {
  margin: 0;
  padding: 0;
  list-style: disc;
  margin-left: 20px;
}
.career-detail .job-detail .content li {
  margin-bottom: 12px;
}

.btn-apply-job-wrapper {
  display: none;
}
@media (max-width: 767.98px) {
  .btn-apply-job-wrapper {
    display: block;
    position: sticky;
    bottom: 0px;
    align-self: flex-end;
    background: #fff;
    padding: 15px;
    text-align: center;
  }
}

.block-yscroll {
  max-height: 500px;
  overflow-y: auto;
}

/* JOB ITEM */
.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
  gap: 10px;
}
.job-item:hover {
  background: #fff;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .job-item {
    flex-direction: column;
  }
  .job-item .job-info {
    width: 100%;
  }
  .job-item .job-meta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .job-item .job-meta span {
    margin-bottom: 0;
  }
}

.job-info {
  flex: 1;
}
.job-info .name {
  font-size: 1.8rem;
  font-weight: bold;
}
.job-info .text {
  display: block;
  font-size: 14px;
  color: #6b7280;
}

.job-meta {
  text-align: right;
}
.job-meta span {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.job-meta .btn-action {
  padding: 6px 14px;
  border: 1px solid #2b0a6d;
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.job-meta .btn-action:hover {
  background: #2b0a6d;
  color: #fff;
}
@media (min-width: 768px) {
  .job-meta {
    width: 30%;
  }
}

.apply-modal {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  color: var(--normal-color);
}
.apply-modal .modal-header,
.apply-modal .modal-footer {
  padding: 24px 32px;
}
.apply-modal .modal-body {
  padding: 32px;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-upload-label input[type=file] {
  display: none;
}
.file-upload-label:hover {
  border-color: var(--primary-color);
  background: rgba(196, 169, 110, 0.06);
  background-color: rgba(255, 255, 255, 0.7);
}
.file-upload-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 16px;
}
.file-upload-text {
  flex: 1;
}
.file-upload-text span {
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}
.file-upload-text span.file-name {
  color: var(--primary-color);
  font-size: 12px;
}
.file-upload-text small {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.05em;
}

.login-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  /* Password Toggle */
  /* Step Indicator */
  /* Back Button */
  /* Success State */
}
@media (max-width: 991.98px) {
  .login-section {
    grid-template-columns: 1fr;
  }
}
.login-section .hero-left {
  background: url("https://lh3.googleusercontent.com/gps-cs-s/APNQkAF81tvHIV5yHV3wP2Cpv81f5Oq_7e8gK1KNE6iY0z4p3Mx5TrrC5O7dTl9DRsjhIKGNEMmcWW7tIMjWp8o4XO69UWnQ3Kbel_GP14OWwf6T52eHfR_ymW1Ytnv2x3QOwOCpV5ea=s1360-w1360-h1020-rw") center/cover;
  position: relative;
}
@media (max-width: 767.98px) {
  .login-section .hero-left {
    min-height: 320px;
  }
}
.login-section .hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.login-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 60px;
  color: #fff;
}
.login-section .hero-content h1 {
  font-size: 72px;
  line-height: 1.1;
}
.login-section .hero-content h1 span {
  color: #b48b42;
}
@media (max-width: 991.98px) {
  .login-section .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 767.98px) {
  .login-section .hero-content h1 {
    font-size: 36px;
  }
}
.login-section .hero-content p {
  margin: 30px 0;
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .login-section .hero-content p {
    font-size: 14px;
    margin: 15px 0;
  }
}
.login-section .hero-content .info-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
}
.login-section .hero-content .info-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.login-section .hero-content .info-box h3 span {
  color: #b48b42;
  margin-right: 8px;
}
.login-section .hero-content .info-box p {
  font-size: 13px;
  line-height: 1.6;
  color: #e0e0e0;
}
@media (max-width: 991.98px) {
  .login-section .hero-content {
    padding: 80px 40px;
  }
}
@media (max-width: 767.98px) {
  .login-section .hero-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 100%;
  }
}
.login-section .benefits {
  display: flex;
  gap: 50px;
}
.login-section .benefits .benefit-item {
  text-align: center;
}
.login-section .benefits .benefit-item i {
  font-size: 30px;
  color: #b48b42;
}
@media (max-width: 991.98px) {
  .login-section .benefits {
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .login-section .benefits {
    justify-content: center;
    gap: 20px;
  }
}
.login-section .hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  padding: 20px;
}
@media (max-width: 767.98px) {
  .login-section .hero-right {
    padding: 30px 15px;
  }
}
.login-section .login-card {
  width: 100%;
  max-width: 80%;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991.98px) {
  .login-section .login-card {
    max-width: 90%;
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .login-section .login-card {
    max-width: 100%;
    padding: 25px;
    border-radius: 14px;
  }
}
.login-section .login-card h2 {
  font-size: 48px;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .login-section .login-card h2 {
    font-size: 28px;
  }
}
.login-section .login-card .welcome {
  margin-bottom: 35px;
}
.login-section .login-card .form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.login-section .login-card .remember {
  cursor: pointer;
}
.login-section .login-card .agree {
  cursor: pointer;
}
.login-section .login-card .agree a {
  color: var(--primary-color);
  text-decoration: underline;
}
.login-section .login-card .btn-login {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}
.login-section .login-card .btn-login:hover {
  background-color: var(--accent-color);
}
.login-section .login-card .divider-line {
  text-align: center;
  margin: 30px 0;
  position: relative;
}
.login-section .login-card .divider-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;
}
.login-section .login-card .divider-line span {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.login-section .login-card .social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.login-section .login-card .social-login button {
  height: 50px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.login-section .login-card .social-login .btn-login-google {
  background: #db4a39;
}
.login-section .login-card .social-login .btn-login-facebook {
  background: #3b5998;
}
@media (max-width: 767.98px) {
  .login-section .login-card .social-login {
    grid-template-columns: 1fr;
  }
}
.login-section .login-card .register-link {
  text-align: center;
  margin-top: 25px;
}
.login-section .login-card .register-link a {
  color: #b48b42;
  text-decoration: none;
  font-weight: 600;
}
.login-section .password-group {
  position: relative;
}
.login-section .password-group-value {
  position: relative;
}
.login-section .password-toggle {
  position: absolute;
  right: 5px;
  top: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 18px;
  padding: 5px;
  transition: color 0.3s;
}
.login-section .password-toggle:hover {
  color: #333;
}
.login-section .step-indicator {
  margin-bottom: 30px;
}
.login-section .progress-bars {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.login-section .progress-bar {
  flex: 1;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  transition: background 0.3s;
}
.login-section .progress-bar.active {
  background: #b48b42;
}
.login-section .step-text {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
}
.login-section .back-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #b48b42;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 14px;
  transition: color 0.3s;
}
.login-section .back-btn:hover {
  color: #a67a35;
}
.login-section .back-btn.visible {
  display: flex;
}
.login-section .highlight-email {
  font-weight: 600;
  color: #000;
}
.login-section .helper-text {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}
.login-section .helper-text a {
  color: #b48b42;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.login-section .helper-text a:hover {
  text-decoration: underline;
}
.login-section .password-requirements {
  display: none;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
  font-size: 12px;
}
.login-section .password-requirements.visible {
  display: block;
}
.login-section .requirement {
  padding: 4px 0;
  color: #999;
}
.login-section .requirement.met {
  color: #4caf50;
}
.login-section .requirement::before {
  content: "✓ ";
  font-weight: bold;
  margin-right: 6px;
}
.login-section .match-indicator {
  font-size: 12px;
  color: #4caf50;
  margin-top: 8px;
  display: none;
}
.login-section .match-indicator.visible {
  display: block;
}
.login-section .success-content {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.login-section .success-content.visible {
  display: block;
}
.login-section .success-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.login-section .success-icon i {
  font-size: 40px;
  color: #4caf50;
}
.login-section .success-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #000;
}
.login-section .success-content > p {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.login-section .btn-signin {
  width: 100%;
  height: 56px;
  background: #b48b42;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  margin-bottom: 20px;
}
.login-section .btn-signin:hover {
  background: #a67a35;
}
.login-section .success-note {
  font-size: 12px;
  color: #999;
}
.login-section .step {
  display: none;
  opacity: 0;
}
.login-section .step.active {
  display: block;
  opacity: 1;
}
.login-section .boxfooter-link {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
  margin-top: 30px;
}
.login-section .boxfooter-link a {
  color: #b48b42;
  text-decoration: none;
  font-weight: 600;
}
.login-section .boxfooter-link a:hover {
  text-decoration: underline;
}

.membership .tier-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .membership .tier-list {
    gap: 30px;
  }
}
.membership .tier-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .membership .tier-item {
    flex: 0 0 calc(50% - 50px);
  }
}
@media (max-width: 767.98px) {
  .membership .tier-item {
    flex: 0 0 100%;
  }
}
.membership .tier-icon {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.membership .tier-content {
  flex: 1;
}
.membership .silver .tier-icon {
  background: #d7d7d7;
}
.membership .gold .tier-icon {
  background: #c79b42;
  color: #fff;
}
.membership .platinum .tier-icon {
  background: #0f1f3d;
  color: #fff;
}

/* SIDEBAR */
.sidebar-post,
.sidebar-filter {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 40px;
}
@media (max-width: 991.98px) {
  .sidebar-post,
.sidebar-filter {
    margin-top: 30px;
  }
}

.filter-mobile-label {
  display: block;
  margin-bottom: 5px;
}
.filter-mobile-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-mobile-group select {
  flex: 0 0 calc(50% - 5px);
  padding: 4px;
  font-size: 14px;
}

.sidebar-box {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 12px;
}
.sidebar-box__head {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.sidebar-box .block-search {
  display: flex;
}
.sidebar-box .block-search input {
  flex: 1;
  height: 45px;
  padding: 0 12px;
  border-radius: 24px 0 0 24px;
}
.sidebar-box .block-search .btn {
  border-radius: 0;
  padding: 0px;
  width: 45px;
  height: 45px;
  border-radius: 0 24px 24px 0;
}
.sidebar-box .block-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sidebar-box .block-tags .tag-item {
  background: #fff;
  display: inline-block;
  color: #444;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 1.4rem;
  transition: var(--trans);
}

.ft-group {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #353434;
  letter-spacing: -0.5px;
}
.ft-group:last-child {
  margin-bottom: 0;
}
.ft-group input {
  display: none;
}
.ft-group .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 1.6rem;
  width: 1.6rem;
  border: 1px solid #481267;
  border-radius: 3px;
}
.ft-group .checkmark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 1.1rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ft-group input:checked ~ .checkmark {
  background-color: #481267;
  border: 0;
}
.ft-group input:checked ~ .checkmark:after {
  display: block;
}

.trend-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  text-decoration: none;
  color: var(--normal-color);
}

.trend-item {
  position: relative;
  transition: var(--trans);
}
.trend-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}
.trend-item h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.trend-item span {
  font-size: 1.4rem;
}
.trend-item:hover span {
  color: var(--normal-color);
}

.comments__group {
  position: relative;
  margin-top: 40px;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 12px;
}
.comments__group .block__comments-title {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.comments__group .block__comments-list {
  margin: 0;
  padding: 0;
}
.comments__group .block__comments-list .item {
  margin-bottom: 30px;
}
.comments__group .block__comments-list .item:last-child {
  margin-bottom: 0;
}
.comments__group .block__comments-list .item-inner {
  display: flex;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .comments__group .block__comments-list .item-inner {
    flex-direction: column;
    gap: 10px;
  }
}
.comments__group .block__comments-list .item-inner .box-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .comments__group .block__comments-list .item-inner .box-avatar {
    display: none;
  }
}
.comments__group .block__comments-list .item-inner .box-content {
  flex: 1;
}
.comments__group .block__comments-list .item-inner .box-content .box-content-head {
  display: flex;
  gap: 10px;
}
.comments__group .block__comments-list .item-inner .box-content .box-content-head .box-img img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .comments__group .block__comments-list .item-inner .box-content .box-content-head .box-img {
    display: none;
  }
}
.comments__group .block__comments-list .item-inner .box-content .box-content-head .box-infor .title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.comments__group .block__comments-list .item-inner .box-content .box-content-head .box-infor .meta {
  font-size: 1.4rem;
  font-weight: 600;
  color: #747474;
}
.comments__group .block__comments-list .item-inner .box-content .desc {
  color: #0d0404;
  margin: 10px 0;
}
.comments__group .block__comments-list .item-inner .box-content .gr-btn {
  margin-top: 24px;
}
.comments__group .block__comments-list .item-inner .box-content .comment-reply {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #000;
  border-radius: 24px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  transition: all 0.3s ease;
}
.comments__group .block__comments-list .item-inner .box-content .comment-reply:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.comment-respond {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
}
.comment-reply-title {
  font-size: 2.8rem;
}
.comment-reply-title #cancel-comment-reply {
  margin-left: 30px;
  font-size: 1.6rem;
  color: var(--accent-color);
}
@media (max-width: 767.98px) {
  .comment-reply-title #cancel-comment-reply {
    margin-left: 0;
    display: block;
  }
}
@media (max-width: 767.98px) {
  .comment-reply .comment-notes {
    font-size: 1.4rem;
  }
}

#backtotop {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  position: fixed;
  bottom: 20px;
  left: 15px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  z-index: 400;
  cursor: pointer;
  box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

.social-fixed {
  position: fixed;
  bottom: 70px;
  left: 15px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-fixed .item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
}

.footer {
  background: var(--primary-color);
  color: #fff;
  overflow: hidden;
}
.footer a {
  color: inherit;
}
.footer__main {
  padding: 80px 0;
}
.footer__brand {
  max-width: 360px;
}
.footer__brand .logo {
  display: block;
  margin-bottom: 15px;
}
.footer__brand .logo img {
  width: 140px;
}
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer__social a {
  font-size: 16px;
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__nav .footer__head {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav ul li {
  margin-bottom: 12px;
}
.footer__nav ul li a {
  transition: all 0.3s ease;
}
.footer__nav ul li a:hover {
  color: var(--hover-color);
}
.footer__newsletter {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer__policy {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.newsletter-head .sectitle {
  font-size: 24px;
  font-family: var(--primary-font);
}
@media (max-width: 991.98px) {
  .newsletter-head {
    margin-bottom: 15px;
  }
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  border-radius: 24px;
}

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