* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "avenir", serif;
}

@font-face {
  font-family: "abygaer";
  src: url(../fonts/Abygaer.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "avenir";
  src: url(../fonts/Avenir-LT.woff) format("woff");
  font-display: swap;
}

body {
  font-family: "avenir", sans-serif;
  width: 100%;
  background: #28402d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h3 {
  font-family: "";
  /* color: #2a3f70 !important; */
}

a * {
  text-decoration: none;
}

p {
  font-size: 14px;
}

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

h1,
h1 span {
  font-family: "abygaer";
  font-size: 85px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}

.section_title h2,
h2 span {
  font-family: "abygaer";
  font-size: 35px;
  font-weight: 400;
  color: #f0f0f0;
}

.section_title {
  margin-bottom: 15px;
}

.section_title h2 {
  display: flex;
  flex-direction: column;
}

.section_paragraph p {
  font-family: "avenir";
  font-size: 16px;
  color: #f0f0f0b2;
  margin-bottom: 5px;
  line-height: 38px;
}

.section_paragraph p:nth-child(1) {
  color: #f5f2ec;
  font-style: italic;
  margin-bottom: 5px;
  line-height: 28px;
}

.mobile {
  display: none !important;
}

/* section space */

section {
  padding: 20px 0px;
}

section#brochure_section {
  padding-bottom: 0px;
}

/* Header CSS */

.mobile_menu {
  display: none;
}

header.header {
  padding: 5px 0px;
  position: absolute;
  width: 100%;
  z-index: 4;
  background: #ff000000;
  top: 0%;
}

.iti--inline-dropdown .iti__dropdown-content {
  z-index: 4;
}

/* header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
} */

.toTop {
  position: fixed;
  bottom: 15%;
  right: 3%;
  padding: 10px 15px;
  border-radius: 50px;
  background: #000;
  border: 0;
  color: #fff;
  box-shadow: 0 0 4px 0px #28402d;
  animation: moveToTop infinite 1.1s ease-in-out;
}

@keyframes moveToTop {
  0% {
    bottom: 15%;
    transition: all 1.1s ease-in-out;
  }
  50% {
    bottom: 14%;
    transition: all 1.1s ease-in-out;
  }

  100% {
    bottom: 15%;
    transition: all 1.1s ease-in-out;
  }
}

.form_submit_btn {
  position: relative;
}

.submit_loading_btn.loading {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  margin: 0 auto;
  width: 37px;
}

.mobile_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
}

/* .header_logo {
  width: 120px;
}

.header_logo.left {
  width: 190px;
} */

.header_logo.right img {
  height: 60px;
  width: 100px;
}

.header_logo.left img {
  height: 55px;
  width: 150px;
}

.navbar {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  z-index: 5;
  justify-content: center;
}

.navbar ul {
  /* background: #a15a4dba; */
  background: #6e2d14;
  border-radius: 35px;
  backdrop-filter: blur(25px);
  overflow: hidden;
}

.navbar ul li a {
  color: #fff;
  font-size: 16px;
  border-right: 1px solid #a15a4dba;
  padding: 0.6rem 1rem;
}
.nav-link ul li a:last-child {
  border-right: 0;
}

.nav-link:hover {
  background: #efefef26;
  color: #fff;
  /* border-radius: 35px; */
}

.nav-link:focus {
  color: #fff;
}
/* .nav-link:focus {
  background: #6e2d14;
  color: #fff;
  border-radius: 35px;
} */
/* Header CSS Ends*/

/* Banner CSS */

#banner {
  padding: 0px;
  position: relative;
}

.banner_wrapper {
  overflow: hidden;
}

/* Banner zoom animation removed */

@keyframes zoomInOut {
  0% {
    transform: scale(1.1);
    transition: all 5s ease-in-out;
  }

  50% {
    transform: scale(1);
    transition: all 1s ease-in-out;
  }

  100% {
    transform: scale(1.1);
    transition: all 1s ease-in-out;
  }
}

#banner::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 0;
  background: url(../images/banner-pattern.webp) no-repeat top left;
  background-size: contain;
  width: 250px;
  height: 135px;
  content-visibility: auto;
  will-change: transform;
}

.banner-content {
  position: absolute;
  top: 9%;
  left: 32%;
  right: 0;
  margin: 0 auto;
  display: flex;
  /* width: 35%; */
}

.banner_text h1 {
  display: flex;
  flex-direction: column;
}

.banner_text h1 span {
  margin: 0;
  color: #28402d;
}

.banner_text h1 span:nth-child(2) {
  text-align: center;
  padding-left: 45px;
}

.banner_text h1 span:nth-child(3) {
  text-align: right;
}

.banner_text p {
  width: 70%;
  float: right;
  color: #28402d;
  font-size: 16px;
  font-style: italic;
}

form#banner-form {
  display: flex;
  justify-content: center;
}

.banner_form .form_box {
  width: 100%;
}

/* About */

#about {
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  top: -70px;
  /* left: 0; */
  right: 0;
  bottom: 0;
  background: url(../images/body-pattern-1.webp) no-repeat right;
  width: 30%;
  pointer-events: none;
}

#about_us::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  /* left: 0; */
  right: 0;
  background: url(../images/body-pattern-1.webp) no-repeat right;
  width: 30%;
  pointer-events: none;
}

.section_paragraph {
  line-height: 40px;
}

#about .section_paragraph ul {
  color: #f0f0f0b2;
  font-size: 16px;
  padding-left: 30px;
  margin: 10px 0px;
}

#about .section_paragraph ul li strong {
  font-style: italic;
  color: #f0f0f0b2;
  font-size: 16px;
  line-height: 28px;
}

.about-image-box::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  background: url(../images/icons/bg-flower-pattern.webp) no-repeat bottom right;
  background-size: contain;
  width: 240px;
  height: 100%;
  z-index: -1;
}
/* About */

#about_us {
  position: relative;
}

.about-us-image-box::before {
  content: "";
  position: absolute;
  background: url(../images/icons/bg-flower-pattern.webp) no-repeat bottom right;
  left: 30%;
  bottom: -10%;
  background-size: contain;
  width: 280px;
  height: 100%;
  z-index: -1;
}

#about_us .section_paragraph p {
  font-style: normal;
  color: #f0f0f0b2;
  font-size: 16px;
}

#about_us .section_paragraph ul li {
  font-style: italic;
  color: #f0f0f0b2;
  font-size: 16px;
}

.about-us-content {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.about-us-content .section_paragraph,
.about-us-content .section_title {
  width: 85%;
}
/* About */

/* amenites css */

#amenities {
  position: relative;
}

#amenities::before {
  content: "";
  position: absolute;
  background: url(../images/icons/flower-pattern-2.webp.png) no-repeat top right;
  top: 34px;
  right: 10px;
  background-size: contain;
  width: 31%;
  height: 100%;
  z-index: -1;
}

#amenities::after {
  content: "";
  position: absolute;
  background: url(../images/body-pattern-1.webp) no-repeat right;
  top: 0px;
  bottom: 0px;
  right: 0;
  background-size: cover;
  width: 30%;
  height: 100%;
  z-index: 0;
}

.amenities_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 65px 75px;
}

.amenities_wrapper .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0px 0px;
}

.amenities_box {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: #28402d;
  border: 1px solid #cf683c5c;
  border-radius: 25px;
  justify-content: center;
}

.amenities_img img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.amenities_text p {
  color: #f0f0f0b2;
  font-style: italic;
  font-size: 16px;
  text-align: center;
  padding: 13px 5px;
}

/* amenites css */

/* Plans css */

#plans {
  position: relative;
}

#plans::before {
  content: "";
  position: absolute;
  background: url(../images/body-pattern-1.webp) no-repeat right;
  top: 0;
  right: 0;
  background-size: cover;
  width: 30%;
  height: 100%;
  z-index: -1;
}

div#myTab.plan_tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 25px;
}

.plan_tabs {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px;
  backdrop-filter: blur(10px);
  width: fit-content;
  margin: 0 auto 30px;
}

button.plan_tab {
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  font-family: "abygaer";
}

button.plan_tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

button.plan_tab.active {
  background: #fff;
  color: #28402d;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.plan-image {
  display: none;
}

.plan-image.active {
  display: block;
}

.plan-images {
  /* width: 85%; */
  position: relative;
}

.plan-images::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0px;
  margin: 0 auto;
  width: 130px;
  height: 130px;
  transform: translate(0, -50%);
  background: url(../images/plans/webp/plan-tag.png) no-repeat center center;
  transition: all 1s ease-in-out;
  z-index: 3;
}

.plan-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #00000044;
  width: 50%;
  backdrop-filter: blur(6px);
  transition: all 1.1s ease-in-out;
  z-index: 2;
}

.plan-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #00000044;
  width: 50%;
  backdrop-filter: blur(6px);
  z-index: 2;
  transition: all 1.1s ease-in-out;
}

.plan-images:hover::before {
  opacity: 0;
  transition: all 1s ease-in-out;
}

.plan-images:hover .plan-image::after,
.plan-images:hover .plan-image::before {
  width: 0;
  transition: all 1.1s ease-in-out;
}

.plan-slider .item {
  display: flex;
}

.plan-slider .item img {
  width: 80%;
}
/* brochure btn */

a.brochure-btn {
  text-align: center;
  margin-top: 25px;
  text-decoration: none;
}
.brochure-btn {
  text-decoration: none;
}
.brochure-btn button {
  border: 0;
  color: #fff;
  background: #a15a4d;
  padding: 10px 30px;
  font-size: 20px;
  border-radius: 40px;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
}

/* Plans css */

/* Gallery */

.gallery_tabs {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px;
  backdrop-filter: blur(10px);
  width: fit-content;
  margin: 0 auto 30px;
}

button.gallery_tab {
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  font-family: "abygaer";
}

button.gallery_tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

button.gallery_tab.active {
  background: #fff;
  color: #28402d;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-wrapper {
  display: none;
}

.gallery-wrapper.active {
  display: block;
}

#gallery {
  position: relative;
}

#gallery::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  background: url(../images/body-pattern-1.webp) no-repeat right;
  width: 30%;
}

.gallery_slider::before {
  content: "";
  position: absolute;
  top: -25%;
  right: 10%;
  margin: auto;
  background: url(../images/icons/flower-pattern-3.webp.png) no-repeat top right;
  background-size: contain;
  width: 20%;
  height: 48%;
  z-index: -1;
}

.gallery_slider .owl-item .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  backdrop-filter: blur(5px);
  z-index: -1;
}

.gallery_slider .owl-item .item {
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  height: 85vh;
}

.gallery_slider .owl-item .item img {
  width: 60%;
}

.gallery_slider .owl-nav {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
}

.gallery_slider .owl-nav .owl-prev,
.gallery_slider .owl-nav .owl-next {
  width: 35px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 8px 6px;
}

/* Gallery */

/* Location Highlights */

#location_highlights {
  position: relative;
}

#location_highlights::before {
  content: "";
  position: absolute;
  top: -12%;
  right: 5%;
  margin: auto;
  background: url(../images/icons/flower-pattern-3.webp.png) no-repeat top right;
  background-size: contain;
  width: 25%;
  height: 50%;
  z-index: -1;
}

#location_highlights::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  background: url(../images/body-pattern-1.webp) no-repeat right;
  width: 30%;
  pointer-events: none;
}

.location_img_box img {
  width: 75%;
  float: right;
}

.location_img_box a {
  cursor: pointer;
}

#highlights_content .accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#highlights_content .accordion-flush > .accordion-item {
  background: #ffffff33;
  margin-bottom: 20px;
  width: 80%;
  border: 1px solid #fff;
  border-radius: 13px;
  overflow: hidden;
}

#highlights_content
  .accordion-flush
  > .accordion-item
  .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: 0 0 0 0 #fff;
}

#highlights_content .accordion-button {
  background-color: transparent;
  color: #ffffff;
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  font-size: 15px;
}

#highlights_content .accordion-body {
  padding: 0.75rem 1rem;
}

.accordion-button {
  padding: 0.75rem 1rem;
  font-size: 15px;
}

.accordion-body {
  padding: 0.75rem 1rem;
}

.accordion-body p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.location_info ul {
  display: flex;
  justify-content: space-between;
}

.location_info ul li {
  color: #fff;
}

/* Location Highlights */

/* Footer */

/* owl nav */

.owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 25px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  margin: auto;
  width: 30px;
  font-size: 25px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0px 0px;
}

.owl-nav .owl-prev .fa-angle-right,
.owl-nav .owl-next .fa-angle-left {
  font-size: 20px;
}
/* footer form css */

section.forms {
  display: none;
}

#enquire_price input.form_input {
  background: #0c261b57;
  color: #000000;
}

#enquire_price input.form_input::placeholder {
  color: #000000;
}

#sticky-form .form_box,
#enquire_price .form_box {
  flex-direction: column;
}

#sticky-form .form_submit_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

#sticky-form .form_submit_btn input {
  background: #a15b4e;
  color: #ffffff;
  margin: 0 auto;
}

#sticky-form label.checkbox-inline {
  justify-content: center !important;
  text-align: center;
}

#sticky-form .privacy_policy_tc {
  text-align: center;
}

#contact_us input.form_input {
  border: 0;
  background: #ffffff;
}

#contact_us input.form_input::placeholder {
  color: #000000;
}

#contact_us .form_submit_btn input {
  color: #000;
}

form#contact_us,
#enquire_price,
#brochure_form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.forms {
  display: flex;
}

form#brochure_form {
  width: 25%;
  color: #ffffff;
  padding: 35px 30px;
  background: linear-gradient(135deg, #28402d 0%, #1e3023 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

form#brochure_form:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

form#brochure_form .section_title {
  margin-bottom: 25px;
}

form#brochure_form .section_title h3 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

form#brochure_form input.form_input {
  color: #ffffff;
  background: rgba(161, 90, 77, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

form#brochure_form input.form_input:focus {
  background: rgba(161, 90, 77, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(161, 90, 77, 0.2);
  outline: none;
}

form#brochure_form input.form_input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

#brochure_form .form_box {
  flex-direction: column;
  gap: 0;
  width: 100%;
}

#brochure_form .footer_input {
  width: 100%;
  margin-bottom: 0;
}

#brochure_form .form_submit_btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

/* #brochure_form .form_submit_btn input {
  background: #a15b4e !important;
  color: #fff !important;
  padding: 14px 40px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  max-width: 100% !important;
  box-shadow: 0 4px 15px rgba(161, 90, 77, 0.3);
} */

#brochure_form .footer_submit_btn input:hover {
  background: #8d4f42 !important;
  box-shadow: 0 6px 20px rgba(161, 90, 77, 0.4);
  transform: translateY(-2px);
}

#brochure_form .footer_submit_btn input:active {
  transform: translateY(0);
}

#brochure_form .privacy_policy_tc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.5;
}

#brochure_form .privacy_policy_tc a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

#brochure_form .privacy_policy_tc a:hover {
  color: #a15b4e;
}

#brochure_form label.checkbox-inline {
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0;
  justify-content: center;
  text-align: center;
}

#brochure_form label.checkbox-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #a15b4e;
}

form#contact_us .section_title h3 {
  font-size: 35px;
  color: #ffffff;
}

.banner_form {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1px;
}

.banner_form.desktop {
  background: #28402d;
  backdrop-filter: blur(15px);
  border-top: 2px solid rgba(255, 255, 255, 0.148);
  border-bottom: 2px solid rgba(255, 255, 255, 0.148);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

form#banner_form {
  display: flex;
  justify-content: center;
  padding: 25px 0px;
  background: transparent;
  transition: all 0.5s ease-in-out;
}

#banner_form .form_box,
#contact_us .form_box {
  width: 70%;
}

.form_box {
  display: flex;
  justify-content: center;
  gap: 20px;
}

input.form_input {
  background: #ffffff59;
  backdrop-filter: blur(5px);
  border: 0;
  border-radius: 5px;
  padding: 8px 20px;
  color: #fff;
  width: 100%;
  font-size: 14px;
}
#contact_us input.form_input {
  color: #000;
}
input.form_input::placeholder {
  color: #000000;
  font-size: 14px;
}

input:focus-visible {
  outline: 0;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

label.checkbox-inline {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: start;
  gap: 10px;
  font-size: 14px;
  text-align: center;
  color: #efefef7b;
}

label.checkbox-inline input {
  border: 0;
  /* width: 18px; */
}

.privacy_policy_tc {
  font-size: 12px;
  text-align: center;
  color: #fff;
}
.privacy_policy_tc a {
  color: #fff;
  text-decoration: none;
}
.privacy_policy_tc a:hover {
  text-decoration: underline;
}
.form_submit_btn input {
  background: #a15b4e;
  color: #ffffff;
  padding: 8px 35px;
  max-width: 50%;
}

.form_input {
  width: 100%;
}

.form_box .intl-tel-input {
  width: 100%;
  max-height: 37px;
}

.form_box .intl-tel-input .country-list .flag-box,
.intl-tel-input .country-list .country-name {
  color: #000;
}

.form_box .intl-tel-input .selected-flag {
  height: 100%;
  max-height: 65%;
  padding: 18px 10px;
}

.error {
  color: #d10508;
  font-size: 12px;
}

form#sticky-form {
  position: fixed;
  top: 20%;
  right: -325px;
  background: #28402db8;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff4d;
  padding: 2.5rem 15px;
  width: 325px;
  height: auto;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 3px 0px #0000006b;
  z-index: 2;
}

.iti__selected-country {
  height: 37px;
}

.iti {
  width: 100%;
}

form#sticky-form.active {
  right: 0;
  transition: all 0.5s ease-in-out;
}

form#enquire_price,
#brochure_form {
  position: fixed;
  top: 18%;
  left: 0;
  right: 0;
  z-index: 9;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  width: 25%;
  border-radius: 20px;
}

#enquire_price .section_title h2 {
  color: #0c261b;
  font-size: 25px;
}

#enquire_price .privacy_policy_tc {
  color: #000;
}

#enquire_price .form_submit_btn input {
  background: #0c261b;
  color: #fff;
}

button.enquire_now {
  top: 0;
  bottom: 0;
  color: #fff;
  left: -90px;
  max-height: 2rem;
  margin: auto;
  display: none;
  padding: 0px 20px;
  background: #a15b4e;
  position: absolute;
  transform: rotate(270deg);
  border: 1px solid transparent;
  border-radius: 5px 5px 0px 0px;
}

.close {
  position: absolute;
  top: 0.7rem;
  right: 2rem;
  color: #fff;
  cursor: pointer;
}

.contact a,
.address p {
  font-size: 18px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  right: 0px;
  top: 0px;
  padding-right: 0px;
  color: #fff !important;
  /* width: auto; */
  background: transparent;
}

.location_wrapper iframe {
  width: 100%;
}

.footer_btns {
  display: none;
}

.footer_btns a {
  flex: 1;
  max-width: 300px;
  padding: 0.75rem !important;
  /* padding: 15px 20px; */
  background: #a15a4d;
  color: #fff;
  text-decoration: none;
  border-radius: 0px !important;
  text-align: center;
  font-size: 16px;
  /* font-weight: 600; */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 8px; */
}

.footer_btns a i {
  font-size: 18px;
  padding: 0px !important;
}

.footer_btns a:hover {
  background: #28402d;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .navbar ul {
    background: transparent;
    border-radius: 35px;
  }

  .navbar ul li {
    border-bottom: 1px solid #6e2d1433;
    padding: 0rem 1rem;
  }
  .navbar ul li a {
    color: #000;
    font-size: 16px;
  }
  .nav-link:hover {
    background-color: transparent;
    color: #6e2d14;
  }

  .form_submit_btn input {
    background: #a15b4e;
    color: #ffffff;
    padding: 8px 35px;
    max-width: 100%;
  }

  .form_submit_btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .nav-link {
    background: transparent;
    border-radius: 35px;
    padding: 0.5rem;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-align: end;
    transition: all 0.3s ease;
  }

  button.plan_tab {
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 20px;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.1s ease;
    font-weight: 500;
    position: relative;
    font-family: "abygaer";
  }

  .footer_btns {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    /* gap: 10px; */
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: center;
    font-size: 18px;
    align-items: center;
    gap: 1px;
  }

  .footer_btns.revealed {
    display: flex;
  }
}

.social_icons a img {
  width: 30px;
}

.plan_img,
.gallery_img {
  position: relative;
}

.caption {
  position: absolute;
  bottom: 30px;
  background: #00000080;
  width: 100%;
  text-align: center;
}

.caption p {
  color: #fff;
  font-size: 14px;
  padding: 5px 0px;
}

.cloudzoom-blank div:nth-child(3) {
  display: none !important;
}

form#contact_us {
  background: url(../images/footer-form-bg.webp) no-repeat center center;
  padding: 25px 0px;
  height: 400px;
  gap: 20%;
}

.logo_box {
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
  line-height: 25px;
  padding-bottom: 100px;
}

.logo_box img {
  width: 250px;
}

.logo_box img:nth-child(2) {
  width: 100px;
}

.address_box {
  padding-top: 15px;
}

.address_box a strong,
.address_box a,
.address_box p {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

section#pricing_plan {
  padding: 0px 0px;
}

/* FAQs */

#faq_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#faqs {
  position: relative;
}

#faqs::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  background: url(../images/body-pattern-1.webp) no-repeat right;
  width: 30%;
}

#faq_content .section_title {
  margin-bottom: 40px;
}

.faq-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* gap: 30px; */
}

.faq-box .accordion {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#faq_content .accordion .accordion-inner-left,
#faq_content .accordion .accordion-inner-right {
  /* width: 50%; */
  display: flex;
  align-items: center;
}

#faq_content .accordion-item {
  width: 90%;
  border: 0;
  border: 1px solid #fff;
  border-top: 0;
  border-radius: 5px;
  background: #ffffff69;
  overflow: hidden;
  margin-bottom: 5px;
}

#faq_content button.accordion-button {
  background: transparent;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  margin-left: 1rem;
  color: #fff;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  font-size: 15px;
}

#faq_content .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: 0 0 0 0 #fff;
  color: #fff;
}

#faq_content .accordion-button:focus {
  outline: none;
  box-shadow: 0 0 0 0 #fff;
}

#faq_content .accordion-body {
  padding: 0.75rem 15px 0.75rem 40px;
  color: #fff;
}

#faq_content .accordion-body ul li {
  font-size: 14px;
  margin-bottom: 0.25rem;
}

#faq_content .accordion-body p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

#faq_content .accordion-button::after {
  background: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%20class%3D%22bi%20bi-plus%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M8%204a.5.5%200%200%201%20.5.5v3h3a.5.5%200%200%201%200%201h-3v3a.5.5%200%200%201-1%200v-3h-3a.5.5%200%200%201%200-1h3v-3A.5.5%200%200%201%208%204%22%2F%3E%3C%2Fsvg%3E)
    no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 5px;
}

#faq_content .accordion-button:not(.collapsed)::after {
  background: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%20class%3D%22bi%20bi-dash%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M4%208a.5.5%200%200%201%20.5-.5h7a.5.5%200%200%201%200%201h-7A.5.5%200%200%201%204%208%22%2F%3E%3C%2Fsvg%3E)
    no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.call_now_icon {
  width: 48%;
  margin-top: 1%;
  font-size: 1.4em;
  text-align: right;
}

/* FAQs */

/*Responsive css*/

@media only screen and (max-width: 3840px) {
  form#contact_us .form_box {
    width: 47%;
  }
}
@media only screen and (max-width: 2560px) {
  form#contact_us .form_box {
    width: 70%;
  }
  .gallery_slider .owl-item .item img {
    width: 100%;
  }
}
@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 1368px) {
  #faq_content button.accordion-button {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
  }

  .about-image-box::before {
    right: 21px;
    bottom: 72px;
  }
}

@media only screen and (max-width: 1285px) {
  /* form#banner_form {
    bottom: 40px;
  } */

  /* form#banner_form.scroll {
    bottom: 108px;
  } */

  /* .navbar{
    bottom: 0;
  } */

  .gallery_slider .owl-item .item img {
    width: 80%;
  }

  #faq_content button.accordion-button {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
  }
}

@media only screen and (min-width: 800px) and (max-width: 1200px) {
  .navbar ul li a {
    padding: 10px 0px;
  }

  .form_submit_btn input {
    background: #a15b4e;
    color: #ffffff;
    padding: 8px 35px;
    max-width: 100%;
  }
  h1,
  h1 span {
    font-size: 60px;
  }

  .banner_text p {
    width: 70%;
  }

  .about-image-box::before {
    right: 20px;
    bottom: 19%;
  }

  .about-us-image-box::before {
    left: 28%;
    bottom: 0;
  }

  .ceyon_logo {
    display: flex;
    align-items: baseline;
  }

  label.checkbox-inline input {
    width: 35px;
  }

  form#brochure_form {
    width: 50%;
    padding: 30px 25px;
  }

  form#brochure_form .section_title h3 {
    font-size: 26px;
  }
}

/* Laptop screens (13-17 inch MacBooks) */
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  form#brochure_form {
    width: 38%;
    padding: 35px 30px;
  }
}

@media only screen and (min-width: 1441px) and (max-width: 1920px) {
  form#brochure_form {
    width: 35%;
    padding: 35px 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .section_title h2,
  h2 span {
    font-size: 30px;
  }

  .section_paragraph {
    line-height: 25px;
  }

  .section_paragraph p {
    line-height: unset;
  }

  .navbar ul li a {
    font-size: 14px;
    padding: 10px 5px;
  }

  #banner::before {
    width: 180px;
  }

  h1,
  h1 span {
    font-size: 55px;
  }

  .banner_text p {
    font-size: 14px;
    width: 72%;
  }

  .ceyon_logo {
    display: flex;
    align-items: flex-start;
  }

  .logo_box img {
    width: 150px;
  }
  .logo_box img:nth-child(2) {
    width: 80px;
  }

  .about-image-box::before {
    bottom: 30px;
  }

  .about-us-image-box::before {
    left: 24%;
  }

  .amenities_box {
    width: 170px;
    height: 150px;
  }

  .gallery_slider::before {
    top: -25%;
  }

  #faq_content button.accordion-button {
    padding: 0.75rem 10px 0.75rem 2.5rem;
  }
}

@media only screen and (max-width: 996px) {
  header.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1000;
    background: rgba(40, 64, 45, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* header.fixed-header {
    position: fixed;
  } */

  .navbar {
    position: absolute;
    top: 0;
    left: -200%;
    z-index: 1;
    width: 100%;
    background: #f8f8f8;
    transition: all 0.5s ease-in-out;
    height: 90vh;
    z-index: 3;
    padding-top: 0;
  }

  .navbar.active {
    left: 0;
    transition: all 0.5s ease-in-out;
  }

  .navbar ul {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    padding-top: 0;
  }

  .navbar ul li a {
    color: #3f3c06;
  }
  .navbar ul li a:hover {
    color: #000000;
  }

  .mobile_header {
    display: flex;
    justify-content: space-between;
    padding: 0px;
    position: relative;
    z-index: 9;
    align-items: center;
    padding-top: 8px;
  }

  .menu {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    width: 50px;
    justify-content: center;
  }

  .menu span {
    border-bottom: 3px solid #fff;
    width: 25px;
    transition: all 0.5s ease-in-out;
  }

  .menu.active span {
    border: 1px solid #000;
  }

  .menu span:nth-child(2) {
    /* width: 15px;
    margin-right: 10px; */
    transition: all 0.5s ease-in-out;
  }

  .menu.active span:nth-child(2) {
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  .menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 5px);
    transition: all 0.5s ease-in-out;
  }

  .menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, 0px);
    transition: all 0.5s ease-in-out;
  }
}

@media only screen and (max-width: 820px) {
  h1,
  h1 span {
    font-size: 60px;
  }

  .header_logo.right.desktop {
    display: none;
  }

  #banner::before {
    top: 0%;
  }

  #banner_form .form_box,
  #contact_us .form_box {
    width: 95%;
  }

  .about-image-box::before {
    bottom: 0%;
    right: 2%;
    width: 338px;
  }

  #about_us .row {
    flex-direction: column-reverse;
  }

  .about-us-content .section_paragraph,
  .about-us-content .section_title {
    width: 100%;
  }

  .about-image-box,
  .about-us-image-box,
  .location_img_box {
    display: flex;
    justify-content: center;
  }

  .about-us-image-box::before {
    right: unset;
    left: -10%;
  }

  .about-image-box img,
  .about-us-image-box img,
  .location_img_box img {
    width: 80%;
  }

  .gallery_slider .owl-item .item {
    height: 45vh;
  }

  .gallery_slider .owl-item .item img {
    width: 85%;
  }

  .amenities_box {
    width: 150px;
    height: 130px;
  }

  #highlights_content {
    margin-top: 30px;
  }

  .faq-box {
    flex-direction: column;
  }

  #highlights_content .accordion-flush > .accordion-item,
  .faq-box .accordion {
    width: 100%;
  }

  .plan_tabs {
    flex-wrap: wrap;
    gap: 5px;
    /* padding: 4px; */
  }

  button.plan_tab {
    font-size: 16px;
    /* padding: 10px 20px; */
    white-space: nowrap;
    flex: 1;
    min-width: 120px;
  }

  .gallery_tabs {
    flex-wrap: wrap;
    gap: 5px;
    /* padding: 4px; */
  }

  button.gallery_tab {
    font-size: 16px;
    /* padding: 10px 20px; */
    white-space: nowrap;
    flex: 1;
    min-width: 120px;
  }
}

@media only screen and (max-width: 768px) {
  .mobile {
    display: block !important;
  }

  .desktop {
    display: none !important;
  }

  .navbar {
    top: 0px;
  }

  #banner {
    padding-top: 70px;
  }

  #banner::before {
    top: 0%;
    right: 0;
    left: unset;
    background: url(../images/banner-pattern.webp) no-repeat top right;
    background-size: contain;
    transform: rotate(180deg);
    width: 225px;
    height: 130px;
    content-visibility: auto;
    will-change: transform;
  }

  .banner_img {
    padding-top: 0;
  }

  .banner-content {
    position: absolute;
    top: 14%;
    left: 0%;
    right: 0;
    margin: 0;
    padding: 0px 30px;
    width: 100%;
  }

  h1,
  h1 span {
    font-size: 45px;
  }

  form#sticky-form {
    background: #28402deb;
  }

  form#brochure_form {
    width: 90%;
    padding: 25px 20px;
    border-radius: 15px;
    max-width: 100%;
  }

  form#brochure_form .section_title {
    margin-bottom: 20px;
  }

  form#brochure_form .section_title h3 {
    font-size: 22px;
  }

  form#brochure_form input.form_input {
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
  }

  form#brochure_form .form_submit_btn {
    margin-top: 8px;
    margin-bottom: 12px;
  }

  form#brochure_form .form_submit_btn input {
    /* padding: 12px 30px !important; */
    font-size: 15px !important;
    border-radius: 8px !important;
  }

  #brochure_form .privacy_policy_tc {
    font-size: 12px;
    text-align: center;
  }

  #brochure_form label.checkbox-inline {
    display: flex;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }

  #brochure_form label.checkbox-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .about-image-box::before {
    right: 3px;
    bottom: -75px;
    background: url(../images/icons/bg-flower-pattern.webp) no-repeat bottom
      right;
    width: 300px;
  }

  .about-us-image-box::before {
    right: unset;
    left: 0%;
    bottom: -10%;
    background-size: contain;
    width: 70%;
  }

  .highlight_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
    padding: 40px 14px;
  }

  .highlight_box {
    width: 48%;
  }
  .highlight_box h3,
  .highlight_box p {
    color: #fff;
    font-size: 20px;
  }

  .highlight_box p {
    font-size: 15px;
  }
  .banner_form.mobile {
    background: #28402deb;
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    margin: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .banner_form.mobile,
  form#banner_form,
  form#banner_form .form_box {
    position: unset;
    flex-direction: column;
    align-items: center;
  }

  form#banner_form {
    border: none;
    margin: 0;
    border-radius: 0;
    background: transparent;
  }

  .footer_btns a {
    /* padding: 12px 15px; */
    font-size: 14px;
    max-width: none;
  }

  .footer_btns a i {
    font-size: 16px;
  }

  #banner_form .form_box,
  #contact_us .form_box {
    width: 90% !important;
    flex-direction: column;
  }

  .section_title h2,
  h2 span {
    font-size: 25px;
  }

  a.brochure-btn {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    text-decoration: none;
  }

  .about-us-content .section_paragraph,
  .about-us-content .section_title {
    width: 100%;
  }

  .about-image-box,
  .about-us-image-box,
  .location_img_box {
    text-align: center;
  }

  .about-image-box img,
  .about-us-image-box img,
  .location_img_box img {
    width: 80%;
    float: unset;
  }

  #amenities::before,
  #location_highlights::before {
    background: none;
  }

  .amenities_wrapper {
    gap: 29px 35px;
  }

  .amenities_wrapper .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 25px 0px;
  }

  .amenities_box {
    width: 170px;
    height: 170px;
  }

  .owl-nav .owl-next,
  .owl-nav .owl-prev {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 8px 7px;
    width: 40px;
  }

  .gallery_slider .owl-nav {
    position: unset;
  }

  .gallery_slider .owl-item .item {
    height: 25vh;
    background-size: contain !important;
  }

  .gallery_slider .owl-item .item img {
    width: 80%;
  }

  #highlights_content {
    margin-top: 15px;
  }
  #highlights_content .accordion-flush > .accordion-item {
    width: 95%;
  }

  .faq-box .accordion {
    width: 100%;
  }

  form#contact_us {
    gap: 4%;
  }

  .logo_box {
    padding: 80px 20px;
    flex-direction: column;
  }

  .plan-images::before {
    background-size: 100px;
  }

  /* footer */
}

@media only screen and (max-width: 479px) {
}

@media only screen and (max-width: 390px) {
}

@media only screen and (max-width: 360px) {
  .banner-content {
    padding: 0 14px;
  }

  form#sticky-form {
    right: -300px;
    width: 300px;
  }

  .amenities_box {
    width: 150px;
    height: 150px;
  }

  .amenities_img img {
    height: 35px;
  }

  .owl-nav .owl-next,
  .owl-nav .owl-prev {
    border: 1px solid #fff;
    border-radius: 7px;
    padding: 7px 7px;
    width: 29px;
  }
}
