@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.typekit.net/ete8fgx.css");
.registration h2.title-bottom,
section.thankyou h2.title-bottom {
  font-family: "raleway", sans-serif;
  font-weight: 300 !important;
}

.registration form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 650px) {
  .registration form > div,
  section.project-info .box-detail .wrapper-box-detail .group {
    width: 100%;
  }
}
.iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags {
  width: 100%;
  height: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background: transparent !important;
  font-family: "raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 1440px) {
  .iti--separate-dial-code .iti__selected-flag {
    font-size: 14px;
  }
}

.iti__selected-flag {
  padding: 0 8px !important;
  top: 3px;
}

.registration form button {
  border: 0;
}

.registration form button span {
  color: #ff8521;
  font-family: "raleway", sans-serif;
  font-weight: 600 !important;
  transition-property: color;
  transition-delay: 0.1s;
  transition-duration: 0.3s;
}

.registration .group {
  position: relative;
  margin-bottom: 30px;
}

.registration .group.select option {
  background-color: #fff;
  color: #193131;
}

.registration .group.select label.error {
  right: 0;
}

.registration .group.input select {
  width: 100%;
  background: 0 0;
  color: #193131;
  font-family: "raleway", sans-serif;
  font-weight: 500;
  padding: 8px 0 0;
  border-bottom: 1px solid #193131;
  font-size: 16px;
  height: 45px;
}
@media screen and (max-width: 1440px) {
  .registration .group.input select {
    font-size: 14px;
  }
}

.registration .group.input label:not(.error) {
  color: #193131;
  font-weight: 500;
  position: absolute;
  pointer-events: none;
  top: 14px;
  transition: 0.2s;
  font-family: "raleway", sans-serif;
  font-size: 16px;
}
@media (max-width: 1440px) {
  .registration .group.input label:not(.error) {
    font-size: 14px;
  }
}

.registration .group label.error {
  position: absolute;
  font-size: 12px;
  bottom: -20px;
  top: unset !important;
}

.registration .group input {
  padding: 8px 0 0;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #193131;
  background: 0 0;
  font-size: 16px;
  font-family: "Noto Sans Thai", sans-serif;
  font-weight: 500;
  height: 45px;
}
@media (max-width: 1440px) {
  .registration .group input {
    font-size: 14px;
  }
}

.iti__selected-dial-code,
.iti__no-results {
  font-family: "Noto Sans Thai", sans-serif;
}
@media (max-width: 1440px) {
  .iti__selected-dial-code,
  .iti__no-results {
    font-size: 14px;
  }
}

section.progress .box-bottom,
section.progress .box-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0 60px;
}

.registration .group.checkbox {
  height: 45px;
  display: flex;
  align-items: center;
}

.registration .group.checkbox .label {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #193131;
}

.registration .group.checkbox .label a {
  text-decoration: underline;
}

.registration .group.checkbox .label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.registration .group.checkbox .label .checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #838689;
  border-radius: 5px;
  transition: 0.3s;
}

.registration .group.checkbox .label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid #193131;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.registration .group.checkbox .label:hover input ~ .checkmark {
  background-color: #e3e4e5;
}

.registration .group.checkbox .label:checked ~ .checkmark {
  background-color: #2196f3;
}

.registration .accept-error,
.registration label.error {
  color: #f33 !important;
}

.registration .accept-error .checkmark {
  border-color: #f33 !important;
}

.registration input:focus ~ label:not(.error),
.registration input:valid ~ label:not(.error) {
  top: -8px !important;
  font-size: 11px !important;
  color: #193131;
}

.registration .bar {
  position: relative;
  display: block;
  width: 100%;
}

.registration .bar:after,
.registration .bar:before {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #193131;
  transition: 0.2s;
}

.registration .bar:before {
  left: 50%;
}

.registration .bar:after {
  right: 50%;
}

.registration .highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.registration input:focus ~ .highlight {
  animation: 0.3s inputHighlighter;
}

@keyframes inputHighlighter {
  from {
    background: #193131;
  }
  to {
    width: 0;
    background: 0 0;
  }
}
.just-validate-error-label {
  font-size: 11px;
  font-family: "raleway", sans-serif;
  text-align: right;
  position: absolute;
  bottom: -20px;
  right: 0;
}
@media (max-width: 1440px) {
  .just-validate-error-label {
    font-size: 9px;
    bottom: -15px;
  }
}

ul.iti__country-list .iti__country-name,
ul.iti__country-list .iti__dial-code {
  font-family: "Noto Sans Thai", sans-serif !important;
}

input#iti-1__search-input {
  padding: 10px 10px 10px 30px;
  border-bottom: 0;
}

select,
option {
  border-radius: 0;
}

span.drop-down {
  width: 8px;
  height: 8px;
  border-left: 1px solid #193131;
  border-bottom: 1px solid #193131;
  position: absolute;
  right: 10px;
  top: 24px;
  transform: translateY(-50%) rotate(-45deg);
}

.registration-box span.drop-down {
  border-left: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important;
}

input#mobile {
  padding-bottom: 9px;
  padding-left: 80px !important;
}

#registration-form-slide .iti__selected-dial-code {
  color: #fff !important;
}

.button {
  font-size: 16px;
  padding: 8px 20px;
  font-family: "raleway", sans-serif;
  width: 130px;
  line-height: 1;
  height: 35px;
  text-align: center;
  transition: opacity 0.5s;
}
.button:hover {
  opacity: 0.65;
}
@media (max-width: 1440px) {
  .button {
    font-size: 14px;
  }
}

.button-underline {
  position: relative;
}
.button-underline:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #193131;
  transition: transform 0.5s;
  transform-origin: left;
}
.button-underline:hover:before {
  transform: scaleX(0);
}

.registration-box {
  pointer-events: none;
  transform: translateX(100%);
}
.registration-box.active {
  pointer-events: all;
  transform: translateX(0);
}
.registration-box ::-moz-placeholder {
  color: #fff !important;
}
.registration-box label,
.registration-box input,
.registration-box select,
.registration-box .iti__selected-flag,
.registration-box ::placeholder {
  color: #fff !important;
}
.registration-box input,
.registration-box select {
  border-bottom: 1px solid #fff !important;
}
.registration-box .iti__arrow {
  border-top: 4px solid #fff !important;
}
.registration-box select {
  width: 100% !important;
}
.registration-box form {
  padding: 0;
}
.registration-box .group {
  margin-bottom: 25px !important;
}

.bg-register, .bg-loading {
  pointer-events: none;
  opacity: 0;
}
.bg-register.active, .bg-loading.active {
  opacity: 1;
  pointer-events: all;
}

button.btn-close {
  width: 20px;
  height: 20px;
  position: relative;
}
button.btn-close span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
button.btn-close span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
button.btn-close span:nth-child(2) {
  transform: translateY(-50%) rotate(135deg);
}

.masonry {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 576px) {
  .masonry {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.masonry-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}
@media (max-width: 576px) {
  .masonry-item {
    margin-bottom: 10px;
  }
}

.masonry-item:hover {
  transform: translateY(-4px);
}

.masonry-item img {
  width: 100%;
  display: block;
}

.item-content {
  padding: 12px 16px;
}

.item-title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.item-description {
  font-size: 14px;
  color: #767676;
  line-height: 1.4;
}

/* Responsive */
/* Loading animation */
#box-villa-detail {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
#box-villa-detail.active {
  opacity: 1;
  pointer-events: all;
}
#box-villa-detail .button {
  opacity: 0.65;
  transition: all 0.5s;
}
#box-villa-detail .button.active {
  opacity: 1;
}
#box-villa-detail .button:hover {
  opacity: 1;
}
#box-villa-detail img {
  max-width: 900px;
}
@media (max-width: 1024px) {
  #box-villa-detail img {
    max-width: unset;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: 16px;
}
@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  width: 25px;
  height: 1px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.menu.active {
  opacity: 1;
  pointer-events: all;
}

.animate-item {
  opacity: 0;
  transform: translateY(30px);
}

.anim-h {
  opacity: 0;
  transform: translateY(30px);
}

.anim-p {
  opacity: 0;
  transform: translateY(30px);
}

.anim-hr {
  transform: scaleX(0);
}

.hero h2,
.hero p,
.another-hero h2,
.another-hero p {
  opacity: 0;
  transform: translateY(30px);
}

.hero hr,
.another-hero hr {
  transform: scaleX(0);
  transform-origin: left;
}

.hero img,
.another-hero img {
  opacity: 0;
  transform: scale(1.2);
}

.banner-about .black {
  opacity: 0;
  transform: translateX(30px);
}

.banner-about .gold {
  opacity: 0;
}

.banner-about img {
  opacity: 0;
  transform: scale(1.2);
}

.banner-home .top {
  opacity: 0;
  transform: translateX(30px);
}

.banner-home .center {
  opacity: 0;
}

.banner-home .bottom {
  opacity: 0;
  transform: translateX(-30px);
}

.banner-home a {
  opacity: 0;
}

.banner-home img {
  opacity: 0;
  transform: scale(1.2);
}

* {
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  outline: none;
}

html,
body {
  font-family: "Noto Serif Display", serif;
  background-color: #f7f5f2;
}

a,
.btn-more-detail,
.btn-map {
  font-family: "raleway", sans-serif;
}

.contact a,
.contact span {
  line-height: 2;
  font-size: 16px;
  color: #193131;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .contact a,
  .contact span {
    font-size: 14px;
  }
}
.contact span {
  font-family: "Noto Serif Display", serif;
}

p, .resale-details li ul li {
  font-family: "raleway", sans-serif;
  color: #193131;
  line-height: 2;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  p, .resale-details li ul li {
    font-size: 14px;
  }
}

.resale-details li ul {
  list-style: disc;
  padding-left: 20px;
}

.box-headline:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(25, 49, 49, 0.7);
  transform: scale(0);
  transition-property: transform;
  transition-duration: 2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.4s;
}
.box-headline.animated:before {
  transform: scale(1);
}

.banner span,
.banner h2 {
  font-family: "raleway", sans-serif;
  color: #193131;
}

.banner span {
  font-weight: 300;
}

.banner h2 {
  position: relative;
  font-size: 16px;
}
@media (max-width: 576px) {
  .banner h2 {
    font-size: 14px;
  }
}

.btn-map {
  position: relative;
}
.btn-map:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.5s;
  transform-origin: left;
  transform: scaleX(0);
}
.btn-map.active:before {
  transform: scaleX(1);
}

.location iframe {
  opacity: 0;
  pointer-events: none;
}
.location iframe.active {
  opacity: 1;
  pointer-events: all;
}
.location ul.toggle-map a {
  position: relative;
}
.location ul.toggle-map a.active:before {
  transform: scaleX(1);
}
.location ul.toggle-map a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

/* Define a transition duration during page visits */
html.is-changing .transition-fade {
  transition: opacity 0.4s ease;
  opacity: 1;
}

/* Define the styles for the unloaded pages */
html.is-animating .transition-fade {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* เพิ่มใน CSS */
.f-panzoom__viewport {
  padding: 80px;
}
@media (max-width: 1024px) {
  .f-panzoom__viewport {
    padding: 0px;
  }
}

.f-panzoom__viewport > .f-panzoom__content {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

nav li a,
button,
.menu li a {
  letter-spacing: 1px;
}

.title-location {
  font-weight: 700;
}

.detail {
  font-weight: 500 !important;
}

button {
  letter-spacing: 1px !important;
}

nav a,
.menu li a,
nav button,
.registration-box .contact li *,
.registration-box button,
.just-validate-error-label,
.button-underline {
  font-weight: 500;
}

.group-button-swiper {
  position: relative;
}
.group-button-swiper > div {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .group-button-swiper > div {
    width: 40px;
  }
}
.group-button-swiper > div > div {
  width: 15px;
  height: 15px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}
@media (max-width: 576px) {
  .group-button-swiper > div > div {
    width: 10px;
    height: 10px;
  }
}
.group-button-swiper > div.button-prev > div {
  transform: rotate(-45deg) translate(2px, 2px);
}
.group-button-swiper > div.button-next > div {
  transform: rotate(135deg) translate(2px, 2px);
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 6px;
}

[dir=rtl] .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 6px;
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  width: 100%;
}/*# sourceMappingURL=main.css.map */