header {
  width: 100vw;
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0.125rem 2.5rem 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.125rem 2.5rem 0 rgba(0, 0, 0, 0.08);
  z-index: 100;
}
header .secondary_container {
  width: 100%;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1b1b1b;
  color: #FFCF99;
  text-align: center;
}
header .secondary_container .mobile {
  display: none;
}
header .primary_container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 64rem) {
  header .primary_container {
    width: 88%;
  }
}
@media screen and (max-width: 30rem) {
  header .secondary_container {
    height: 3.5rem;
  }
  header .secondary_container p {
    font-size: 0.875rem;
  }
  header .secondary_container .desktop {
    display: none;
  }
  header .secondary_container .mobile {
    display: block;
  }
}
.hero_section {
  width: 100vw;
  height: calc(100vh - 8rem);
  background-image: url("./../assets/hero-section/hero_img_desktop.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero_section .hero_container {
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
.hero_section .hero_container .hero_content {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  color: #FFFFFF;
}

@media screen and (max-width: 64rem) {
  .hero_section {
    background-image: url("./../assets/hero-section/hero_img_tablet.webp");
  }
  .hero_section .hero_container {
    padding: 4rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .hero_section .hero_container .hero_content {
    width: 64%;
  }
}
@media screen and (max-width: 30rem) {
  .hero_section {
    background-image: url("./../assets/hero-section/hero_img_mobile.webp");
  }
  .hero_section .hero_container {
    padding: 2.5rem 1.5rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .hero_section .hero_container .hero_content {
    width: 100%;
  }
}
.plan_section {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  padding: 5rem 0 2.5rem 0;
}
.plan_section .content_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.plan_section .content_container p {
  width: 36%;
  margin: 0 auto;
}
.plan_section .scroll_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  padding-left: 12.5rem;
  padding-right: 12.5rem;
}
.plan_section .scroll_container img {
  width: auto;
  height: 32.5rem;
}
.plan_section ::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 64rem) {
  .plan_section {
    padding: 4rem 0 2rem 0;
    gap: 2rem;
  }
  .plan_section .content_container p {
    width: 60%;
  }
  .plan_section .scroll_container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 30rem) {
  .plan_section {
    padding: 2.5rem 0;
    width: 100%;
    gap: 1.5rem;
  }
  .plan_section .content_container {
    padding: 0 1.25rem;
  }
  .plan_section .content_container p {
    width: 100%;
  }
  .plan_section .scroll_container {
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .plan_section .scroll_container img {
    width: 92%;
    height: auto;
  }
}
.amenities_section {
  width: 100vw;
  padding: 2.5rem 0;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}
.amenities_section .left_container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.amenities_section .left_container .content_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.amenities_section .list_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
.amenities_section .list_container .list_item {
  padding: 0.75rem 0;
  border-bottom: 0.0625rem solid #E0E0E0;
}
.amenities_section .list_container .list_item:nth-child(11) {
  border-bottom: none;
}
.amenities_section .desktop {
  display: block;
}
.amenities_section .tablet, .amenities_section .mobile {
  display: none;
}

@media screen and (max-width: 64rem) {
  .amenities_section {
    padding: 2rem 2.5rem;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .amenities_section .left_container {
    gap: 1.5rem;
  }
  .amenities_section .left_container .content_container {
    text-align: center;
  }
  .amenities_section .left_container .list_container {
    grid-template-columns: repeat(3, 1fr);
  }
  .amenities_section .left_container .list_container .list_item:nth-child(10) {
    border-bottom: none;
  }
  .amenities_section .right_container .tablet {
    display: block;
  }
  .amenities_section .right_container .desktop, .amenities_section .right_container .mobile {
    display: none;
  }
  .amenities_section .right_container img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 30rem) {
  .amenities_section {
    padding: 1.25rem;
  }
  .amenities_section .left_container .content_container {
    text-align: left;
  }
  .amenities_section .left_container .list_container {
    grid-template-columns: repeat(1, 1fr);
  }
  .amenities_section .right_container .mobile {
    display: block;
  }
  .amenities_section .right_container .desktop, .amenities_section .right_container .tablet {
    display: none;
  }
}
.key_section {
  width: 100vw;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.key_section .content_container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.key_section .content_container p {
  width: 56%;
}
.key_section .card_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.key_section .card_container .card_item {
  padding: 2rem;
  background-color: #F5F5F5;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
}
.key_section .card_container .card_item .card_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media screen and (max-width: 64rem) {
  .key_section {
    width: 100vw;
    padding: 2rem 2.5rem;
    gap: 2rem;
  }
  .key_section .content_container p {
    width: 100%;
  }
  .key_section .card_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 30rem) {
  .key_section {
    width: 100%;
    padding: 1.25rem;
  }
  .key_section .card_container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.why_section {
  width: 100vw;
  padding: 2.5rem 0;
  max-width: 80rem;
  margin: 0 auto;
  height: calc(100vh - 8rem);
}
.why_section .content_container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-image: url("./../assets/why-section/why_img_desktop.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem;
  color: #FFFFFF;
  border-radius: 1.25rem;
}
.why_section .content_container p {
  max-width: 80%;
}

@media screen and (max-width: 64rem) {
  .why_section {
    padding: 2rem 2.5rem;
  }
  .why_section .content_container {
    background-image: url("./../assets/why-section/why_img_tablet.webp");
    padding: 2.5rem;
  }
  .why_section .content_container p {
    max-width: 100%;
  }
}
@media screen and (max-width: 30rem) {
  .why_section {
    padding: 1.25rem;
  }
  .why_section .content_container {
    background-image: url("./../assets/why-section/why_img_mobile.webp");
    padding: 1.25rem;
  }
}
.about_section {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  padding: 2.5rem 0;
}
.about_section .content_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.about_section .content_container p {
  width: 40%;
}
.about_section .card_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.about_section .card_container .card_item {
  padding: 2rem;
  background-color: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  border-radius: 1.25rem;
}
.about_section .card_container .card_item .card_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media screen and (max-width: 64rem) {
  .about_section {
    width: 100%;
    padding: 2rem 2.5rem;
  }
  .about_section .content_container {
    gap: 1rem;
  }
  .about_section .content_container p {
    width: 80%;
  }
}
@media screen and (max-width: 30rem) {
  .about_section {
    width: 100%;
    padding: 1.25rem;
  }
  .about_section .content_container p {
    width: 100%;
  }
  .about_section .card_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact_section {
  width: 100vw;
  background-image: url("./../assets/contact_image.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.contact_section .contact_wrapper {
  width: 36%;
  max-width: 80rem;
  margin: 0 12.5rem;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.contact_section .contact_wrapper .form_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.contact_section .contact_wrapper .form_container .input_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.contact_section .contact_wrapper .form_container .input_field label {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
}
.contact_section .contact_wrapper .form_container .input_field input {
  height: 3.25rem;
  padding: 0 1rem;
  border: none;
  background-color: #F5F5F5;
  border-radius: 0.25rem;
}
.contact_section .contact_wrapper .form_container .input_field input::-webkit-input-placeholder {
  color: #999999;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}
.contact_section .contact_wrapper .form_container .input_field input::-moz-placeholder {
  color: #999999;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}
.contact_section .contact_wrapper .form_container .input_field input:-ms-input-placeholder {
  color: #999999;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}
.contact_section .contact_wrapper .form_container .input_field input::-ms-input-placeholder {
  color: #999999;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}
.contact_section .contact_wrapper .form_container .input_field input::placeholder {
  color: #999999;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}
.contact_section .contact_wrapper .form_container .input_field select {
  height: 3.25rem;
  padding: 0 1rem;
  border: none;
  background-color: #F5F5F5;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact_section .contact_wrapper .form_container .dropdown {
  position: relative;
}
.contact_section .contact_wrapper .form_container .dropdown .arrow {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
}
.contact_section .contact_wrapper .form_container button {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
  background-color: #A35A07;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  -webkit-transition: all ease-in;
  transition: all ease-in;
  border-radius: 6.5rem;
  text-decoration: none;
}
.contact_section .contact_wrapper .form_container button:hover {
  background-color: #B86507;
}

@media screen and (max-width: 64rem) {
  .contact_section {
    width: 100%;
    padding: 4rem 2.5rem;
  }
  .contact_section .contact_wrapper {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 64rem) {
  .contact_section {
    width: 100%;
    padding: 1.25rem;
  }
  .contact_section .contact_wrapper {
    width: 100%;
    margin: 0;
    padding: 1.5rem;
  }
}
footer {
  width: 100vw;
  background-color: #1b1b1b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  padding: 1.5rem 12.5rem;
}
footer .soical_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media screen and (max-width: 64rem) {
  footer {
    padding: 1.5rem 2.5rem;
  }
}
@media screen and (max-width: 30rem) {
  footer {
    padding: 1.5rem 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 1rem;
  }
  footer p {
    font-size: 0.875rem;
  }
}
*,
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1 {
  font-family: "mallorga", sans-serif;
  font-size: 3rem;
  font-size: clamp(3rem, 2.4682539683rem + 2.5396825397vw, 4.5rem);
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-family: "mallorga", sans-serif;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 2.1455026455rem + 1.6931216931vw, 3.5rem);
  font-weight: 400;
  font-style: normal;
}

h3 {
  font-family: "mallorga", sans-serif;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.3227513228rem + 0.8465608466vw, 2rem);
  font-weight: 400;
  font-style: normal;
}

.tag {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #A35A07;
}

p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

@font-face {
  font-family: "mallorga";
  src: url(./../assets/mallorga-regular.otf) format("opentype");
}
@font-face {
  font-family: "mallorga";
  src: url(./../assets/mallorga-regular.otf) format("opentype");
}
.btn {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
  background-color: #A35A07;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  -webkit-transition: all ease-in;
  transition: all ease-in;
  border-radius: 6.5rem;
  text-decoration: none;
}
.btn:hover {
  background-color: #B86507;
}