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

:root {
  --primary-font: "Cinzel";
  --secondary-font: "Discover";
  --tertiary-font: "Trajan Pro";
  --primary-color: #9e7f53;
  --secondary-color: #c4a15c;
  --tertiary-color: #6e4b1a;
  --white-color: #fff;
  --black-color: #0f102e;
  --transition: all 320ms ease-in-out;
}

body {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  color: #0f102e;
}
img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

/* === Banner Area === */
.banner-sec {
  height: 100vh;
  max-height: -webkit-fill-available;
  background: url(../img/banner-bkgd-mobile.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.59);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  height: 100px;
  width: 100px;
}
.play-btn:focus-visible {
  outline: none;
}
#playVideo .modal-dialog {
  min-height: 90vh;
  min-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .banner-sec video {
  height: 100%;
  width: 100%;
  object-fit: cover;
} */
.banner-vlu-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: -webkit-fill-available;
  background: url(../img/vlu-detail-banner-mobile.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.banner-sec .container {
  padding-bottom: 40px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.banner-title {
  font-family: var(--tertiary-font);
  font-size: 22px;
  line-height: 1.36;
  text-align: center;
  color: var(--white-color);
}
.banner-border-bottom {
  max-width: 100%;
  width: calc(100% - 40px);
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  height: 18px;
  background-color: var(--secondary-color);
  z-index: 2;
}

/* === Privilege Area === */
.privilege-sec {
  padding: 40px 0;
  background-color: #f4f2f1;
}
.privilege-sec {
  background: url(../img/waves.svg) no-repeat, #f4f2f1;
  background-position: center top;
  background-size: 100%;
}
.title-center {
  text-align: center;
}
.title {
  font-family: var(--primary-font);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-color);
}
.title-border {
  position: relative;
  display: inline-block;
}
.title-border::before,
.title-border::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 2px;
  background-color: var(--primary-color);
}
.title-border::before {
  left: -36px;
}
.title-border::after {
  right: -36px;
}
.card-wrapper-area {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 30px;
  padding-top: 20px;
  width: 100%;
}
.single-card-area {
  text-align: center;
}
.card-img img {
  border-radius: 14px;
}
.card-detail span {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #5c5d60;
  margin-top: 15px;
  margin-bottom: 10px;
}
.custom-btn-link {
  display: block;
}
.custom-btn-link {
  padding: 12px 25px 14px 25px;
  border-radius: 22px;
  color: #9d9fa2;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid var(--secondary-color);
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
  transition: var(--transition);
}
.custom-btn-link:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}
.btn-link-border {
  position: relative;
  display: inline-block;
}
.btn-link-border::before,
.btn-link-border::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 0.5px;
  background-color: var(--secondary-color);
  pointer-events: none;
}
.btn-link-border::before {
  left: -54px;
}
.btn-link-border::after {
  right: -54px;
}

/* === CTA Area === */
.cta-sec {
  padding: 50px 0;
  background-color: rgba(196, 161, 92, 0.2);
  text-align: center;
  position: relative;
  background-color: var(--primary-color);
}
.medium-title {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--primary-color);
}
.cta-sec .medium-title {
  color: #cea468;
  text-align: left;
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--white-color);
}
.position-btn-bottom {
  position: absolute;
  bottom: -19.5px;
  left: 50%;
  transform: translateX(-50%);
}
.btn-bkgd-white {
  background-color: var(--white-color);
}

/* === VLU Card Detail Area === */
.vlu-detail-sec {
  padding: 70px 0 45px 0;
}
.title.medium-title-two {
  font-size: 30px;
  margin-bottom: 0;
}
.tabbing-area {
  margin-top: 30px;
}
.nav-pills {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.nav-pills .nav-item {
  width: calc((100% / 2) - 7px);
  text-align: center;
}
.nav-pills .nav-link {
  color: #9d9d9d;
  font-weight: 700;
  background-color: rgba(196, 161, 92, 0.18);
  white-space: nowrap;
  position: relative;
  padding: 10px 20px 12px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-pills .nav-link br {
  display: none;
}
.nav-pills .nav-link.active {
  background-color: var(--primary-color);
}
.detail-table {
  display: flex;
  background-color: rgba(187, 189, 191, 0.21);
  padding: 9px 15px 25px 15px;
  margin-top: 0;
}
.detail-table td {
  font-size: 16px;
  font-weight: 300;
  padding: 6px 14px;
  vertical-align: baseline;
  white-space: nowrap;
  border-bottom: 1px solid #bcbcbc;
}
.tfoot {
  display: block;
}
.tfoot td {
  border: none;
  font-size: 9.5px;
  padding-bottom: 0;
}
.tab-content {
  position: relative;
}
.t-c-btn {
  position: absolute;
  bottom: 18px;
  right: 15px;
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 10.5px;
  color: #0f102e;
  text-decoration: underline;
}
.modal-header {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.t-c-list {
  list-style: auto;
  padding: 0.5rem 1.5rem 0 1.5rem;
  margin-bottom: 1rem;
}
.t-c-list li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
}
.t-c-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

/* === Embark Area === */
.embark-sec {
  margin-top: 30px;
}
.embark-bkgd {
  background: url(../img/flower-design.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 40px 0;
  margin-bottom: 30px;
}
.embark-sec .title.medium-title-two {
  font-size: 28px;
}
.showcase-area {
  margin-bottom: 50px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 30px;
  width: 100%;
}
.showcase-img {
  position: relative;
  padding: 0 10px;
}
.showcase-img img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.showcase-img::after {
  content: "";
  max-width: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 8px;
  background-color: var(--secondary-color);
}
.single-showcase-item a {
  text-decoration: none;
}
.single-showcase-item span {
  display: block;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 300;
  color: var(--black-color);
  text-decoration: none;
  text-align: center;
  margin-top: 10px;
}

/* === Video Area === */
.video-img {
  margin-left: -15px;
}
.video-content {
  text-align: center;
}
.video-content h6 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.26;
  margin-bottom: 20px;
  color: var(--tertiary-color);
  font-family: var(--secondary-font);
}

/* === CTA Two Area === */
.cta-two-sec {
  background-color: var(--primary-color);
  padding: 35px 0;
  color: var(--white-color);
}
.cta-two-title {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.3;
}
.custom-btn-white {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}
.btn-link-border.custom-btn-white::before,
.btn-link-border.custom-btn-white::after {
  background-color: var(--white-color);
}

/* === Footer Area === */
.footer {
  background: url(../img/footer-bg.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--white-color);
  padding: 50px 0 25px 0;
  position: relative;
}
.logo-area img {
  width: 260px;
}
.logo-area address a {
  color: var(--white-color);
  text-decoration: none;
  display: block;
  font-size: 18px;
  margin-top: 15px;
  transition: var(--transition);
}
.logo-area address a:hover {
  color: var(--primary-color);
}
.footer-link-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}
.footer-link-list li:not(:last-of-type) {
  margin-bottom: 12px;
}
.footer-link-list li a {
  font-size: 18px;
  font-family: var(--secondary-font);
  text-decoration: none;
  color: var(--white-color);
  transition: var(--transition);
}
.footer-link-list li a:hover {
  color: var(--primary-color);
}

/* === About VLU Card Area === */
.abt-sec {
  padding: 60px 0;
}
.abt-img {
  margin: 30px 0 0 0;
}
.about-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.42;
  color: var(--tertiary-color);
}

/* === Discount Area === */
.discount-sec {
  padding: 50px 0;
  background-color: var(--primary-color);
}
.single-discount-item {
  margin-top: 20px;
}
.disc-left-area .single-discount-item::after {
  content: "";
  background: url(../img/arrow-design-horizontal.svg);
  height: 10px;
  width: 100%;
  background-position: center center;
  background-size: 100%;
  display: block;
  background-repeat: no-repeat;
  margin-top: 15px;
}
.disc-right-area .single-discount-item:not(:last-of-type)::after {
  content: "";
  background: url(../img/arrow-design-horizontal.svg);
  height: 10px;
  width: 100%;
  background-position: center center;
  background-size: 100%;
  display: block;
  background-repeat: no-repeat;
  margin-top: 15px;
}
.disc-title span {
  font-family: var(--primary-font);
  font-size: 18px;
  color: var(--white-color);
  line-height: 1.35;
  text-align: center;
  display: block;
}
.discount-tag-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
  color: var(--white-color);
}
.disc-tag-one {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-right: 3px;
}
.disc-tag-two {
  font-family: var(--primary-font);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.disc-tag-three {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-left: 3px;
  margin-bottom: 2px;
}
.disc-tag-four {
  font-family: var(--primary-font);
  font-size: 37.5px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-left: 3px;
}

/* === Slider Area === */
.gallery-content {
  position: relative;
}
.gallery-img {
  height: 400px;
}
.gallery-img img {
  border-radius: 12px;
  object-fit: cover;
  object-position: bottom;
}
.gallery-text {
  position: absolute;
  bottom: 20px;
  left: auto;
  right: auto;
  width: 100%;
}
.gallery-text span {
  display: block;
  color: white;
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
}
.swiper-pagination {
  position: relative;
  padding-top: 10px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #c4a15c;
}
.swiper-pagination-bullet {
  height: 3.5px;
  width: 30px;
  border-radius: 0;
}

/* === Discount Gallery Area === */
.gallery-sec {
  margin-top: 50px;
  margin-bottom: 50px;
}
.new-gallry-content {
  position: relative;
  margin-bottom: 20px;
}
.new-gallery-img img {
  border-radius: 12px;
}
.new-gallery-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.new-gallery-content span {
  display: block;
  color: var(--white-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.34;
  font-family: var(--primary-font);
}

/* === Discount Slider Area Starts === */
.discSlider .swiper-slide {
  position: relative;
}
.discSlider .img-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.discSlider .bkgd-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background: linear-gradient(to right, #101010 100%, #b8b8b8);
  opacity: 0.65;
}
.discSlider .img-container img {
  object-fit: cover;
  object-position: center;
}
.disc-slide-content {
  position: relative;
  z-index: 1;
}
.disc-slide-logo {
  max-width: 240px;
  margin-bottom: 35px;
}
.disc-slide-text p {
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-color);
  margin-bottom: 0;
}
.disc-slide-content {
  padding-top: 45px;
  padding-bottom: 35px;
}
.discount-tag-area {
  margin-top: 35px;
}

/* === Tab Card === */
.tab-card-holder {
  background-color: #41285a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 150px;
  position: relative;
  padding: 15px;
}
.card-img-holder {
  width: 60%;
  position: relative;
  z-index: 4;
}
.card-img-holder img {
  border-radius: 10px;
}
.card-title-holder {
  position: relative;
  width: 35%;
  z-index: 4;
}
.card-title-holder::before {
  content: "";
  background: url(../img/flower-design.png);
  position: absolute;
  height: 110px;
  width: 110px;
  background-size: cover;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.wave-overlay::before {
  content: "";
  background: url(../img/wave-landscape.svg);
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  top: 0;
  left: 0;
}
.card-title-holder h6 {
  font-size: 24px;
  color: var(--white-color);
  font-family: var(--primary-font);
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 0;
  position: relative;
}
.card-title-holder h6 span {
  font-size: 32px;
}
.nav-item .btn-link-border::before {
  left: -30px;
}
.nav-item .btn-link-border::after {
  right: -30px;
}
.nav-item .btn-link-border::before,
.nav-item .btn-link-border::after {
  width: 30px;
}
.nav-item .custom-btn-link {
  padding: 8px 15px 10px 15px;
  font-size: 12px;
}
.nav-item .custom-btn-link.active {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.tabs-area {
  margin-top: 20px;
}
.tab-card-holder::after {
  content: "";
  background-color: #41285a;
  position: absolute;
  height: 18px;
  width: 18px;
  background-size: cover;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  z-index: 0;
}

/* === Contact Form PopUp === */
#contactForm .modal-content {
  border-radius: 0;
  padding: 1.25rem;
  background-color: #f9f9f9;
}
.form-header {
  margin-bottom: 20px;
}
.form-header h6 {
  font-family: var(--primary-font);
  font-size: 32px;
  font-weight: 700;
  color: #3e3d3d;
  line-height: 1;
  margin-bottom: 3px;
}
.form-header p {
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 400;
  color: #3e3d3d;
  line-height: 1.35;
  margin-bottom: 0;
}
.form-item {
  margin-bottom: 20px;
}
.form-item .form-label {
  font-size: 16px;
  line-height: 1.2;
  color: #3e3d3d;
  margin-bottom: 10px;
}
.form-item .form-control {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  color: #3e3d3d;
  height: 50px;
  border-radius: 0;
  border: 2px solid transparent;
  padding: 10px 20px 13px 20px;
}
.form-item .form-control:focus {
  border: 2px solid var(--primary-color);
  box-shadow: none;
}
.form-item .form-control::placeholder {
  font-size: 14px;
  color: #969696;
}
.radio-item-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.radio-item-container .radio-item:not(:last-of-type) {
  margin-right: 25px;
}
.radio-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.radio-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
}
.radio-item label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  line-height: 1.4;
}
.radio-item label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #cbcbcb;
  border-radius: 50%;
  background-color: #fff;
}
.radio-item input[type="radio"]:checked + label::before {
  background-color: #fff;
}
.radio-item label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #555454;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}
.radio-item input[type="radio"]:checked + label::after {
  opacity: 1;
  transform: scale(1);
}
.form-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  margin-left: 54px;
  padding: 12px 35px 14px 35px;
  margin-top: 25px;
}
.contact-close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
}
.form-img {
  position: relative;
  left: -35px;
}
.form-img img {
  max-width: 120%;
  width: 120%;
}
.error-message {
  font-size: 12px;
  color: #ff0000;
  padding-left: 20px;
}

/* === Thank You === */
.thank-you-container {
  margin-top: 50px;
  margin-bottom: 50px;
}
.icon-holder {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.thank-you-content h1 {
  font-family: var(--primary-font);
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: #3e3d3d;
}
.thank-you-content p {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: 400;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
  color: inherit;
  color: #3e3d3d;
}
.thank-you-content p a {
  color: var(--primary-color);
  text-decoration: none;
}
.thank-you-content p a:hover {
  color: var(--primary-color);
}
iframe {
  height: 34vh;
}
