* {
  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-face {
  font-family: "avenir";
  src: url(../fonts/Avenir-LT.woff) format("woff");
}

body {
  font-family: "avenir", sans-serif;
  width: 100%;
  background: #28402d;
}

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%;
}

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: #ffffff00;
  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: 45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  z-index: 5;
  justify-content: center;
}

.navbar ul {
  background: #ffffff4a;
  border-radius: 35px;
  padding: 0px 0px;
  backdrop-filter: blur(10px);
}

.navbar ul li {
  margin: 0px 10px;
}

.navbar ul li a {
  color: #fff;
  font-size: 16px;
}

.navbar ul li a:hover {
  color: #28402d;
}

.nav-link:focus,
.nav-link:hover {
  color: #28402d;
}

/* Header CSS Ends*/

/* Banner CSS */

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

.banner_wrapper {
  overflow: hidden;
}

.banner_img img {
  animation: zoomInOut infinite 7s ease-in-out;
}

@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.png) no-repeat top left;
  background-size: contain;
  width: 250px;
  height: 135px;
}

.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.png) 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.png) 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.png) 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.png) 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.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.png) 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.png) no-repeat right;
  top: 0;
  right: 0;
  background-size: cover;
  width: 30%;
  height: 100%;
  z-index: -1;
}

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

button.plan_tab {
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 25px;
}

button.plan_tab.active {
  font-family: "abygaer";
  font-size: 35px;
}

.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;
}

.brochure-btn button {
  border: 0;
  color: #fff;
  background: #6e2e14;
  padding: 10px 30px;
  font-size: 20px;
  border-radius: 40px;
}

/* Plans css */

/* Gallery */

button.gallery_tab {
  background: transparent;
  border: none;
  color: #ffff;
  font-size: 25px;
}

button.gallery_tab.active {
  font-family: "abygaer";
  font-size: 35px;
}

.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.png) no-repeat right;
  width: 30%;
}

.gallery_slider::before {
  content: "";
  position: absolute;
  top: -25%;
  right: 10%;
  margin: auto;
  background: url(../images/icons/flower-pattern-3.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.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.png) 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);
}

.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 input {
  background: #a15b4e;
  color: #ffffff;
}

#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: 20px 10px;
  background: #28402d;
}

form#brochure_form input.form_input {
  color: #ffffff;
  background: #a15b4e85;
}

form#brochure_form input.form_input::placeholder {
  color: #ffffff;
}

#brochure_form .form_box {
  /* width: 100%; */
  flex-direction: column;
}

#brochure_form .footer_submit_btn input {
  background: #a15b4e !important;
  color: #fff;
}

#brochure_form .privacy_policy_tc {
  color: #fff;
}

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

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

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

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

.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;
}

label.checkbox-inline {
  display: flex;
  width: 100%;
  gap: 10px;
  font-size: 12px;
}

label.checkbox-inline input {
  margin-bottom: 33px;
  border: 0;
  width: 18px;
}

.privacy_policy_tc {
  font-size: 9px;
  color: #fff;
}

.form_submit_btn input {
  background: #a15b4e;
  color: #ffffff;
  padding: 8px 35px;
}

.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;
  padding: 26px 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: #ffffff;
  padding: 20px;
  width: 25%;
  border-radius: 15px;
}

#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;
  height: 45px;
  margin: auto;
  display: none;
  padding: 10px 20px;
  background: #a15b4e;
  position: absolute;
  transform: rotate(270deg);
  border: 1px solid transparent;
  border-radius: 5px 5px 0px 0px;
}

.close {
  position: absolute;
  top: 6px;
  right: 8px;
  color: #fff;
}

.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;
}

.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.png) 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;
  margin-bottom: 10px;
}

#faq_content button.accordion-button {
  background: transparent;
  padding: 32px 40px;
  color: #fff;
}

#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: 0px 15px;
  padding-left: 40px;
  color: #fff;
  min-height: 184px;
}

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

#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: 10px;
}

#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;
}

/* 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: 40px 45px;
  }

  .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: 36px 45px;
  }
}

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

  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%;
  }
}

@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: 36px 35px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 996px) {
  header.header {
    position: static;
    width: 100%;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    /* border-radius: 15px; */
  }

  /* 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;
  }

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

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

  .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%;
  }
}

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

  .desktop {
    display: none !important;
  }

  .navbar {
    top: 0px;
  }

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

  .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%;
  }

  .about-image-box::before {
    right: 3px;
    bottom: -75px;
    background: url(../images/icons/bg-flower-pattern.png) 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,
  form#banner_form,
  form#banner_form .form_box {
    position: unset;
    flex-direction: column;
    align-items: center;
  }

  form#banner_form {
    border: 1px solid #fff;
    margin: 10px 15px;
    border-radius: 15px;
  }

  #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;
  }

  .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;
  }
}
