@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  border: none;
  outline: none;
  text-decoration: none;
  color: #2d2d2d;
}
:root {
  --colorPrimary: #b58f63;
  --colorSecondary: #a67137;
  --text-pera: #48331e;
  --gradient: linear-gradient(
    -45deg,
    var(--colorPrimary),
    var(--colorSecondary),
    var(--colorPrimary),
    var(--colorSecondary)
  );
  --c1: #092d1f;
  --c2: #52a07b;
  --border: 1px solid #00000015;
}
[class*="grid"] {
  display: grid;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
body {
  -webkit-text-size-adjust: 100%;
  background: #f2f2f2;
}
p,
a,
input,
select,
textarea,
button {
  font-size: 1.6rem;
}
img,
video {
  max-width: 100%;
}
.container {
  max-width: 1240px;
  padding: 0 2rem;
  margin: auto;
  width: 100%;
}
i svg {
  fill: var(--text-pera);
  width: unset;
  height: 2.5rem;
  transition: 0.3s;
}
i {
  line-height: 1;
}
button {
  padding: 1.5rem 3rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--gradient);
  color: white;
  font-weight: 500;
  transition: 0.3s;
  width: 100%;
  border-radius: 0.5rem;
  text-transform: capitalize;
}
button i svg {
  fill: white;
}
button:hover {
  scale: 0.95;
}
header {
  height: 8rem;
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - 40rem);
  box-shadow: #0000001a 0px 8px 24px;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}
header .logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .logos img {
  height: 5rem;
}
.quote-header {
  background: #ffffff;
  max-width: 40rem;
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  height: 100vh;
  border-left: var(--border);
}
header .links {
  display: flex;
  align-items: center;
  height: 100%;
}
header .links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
  padding: 0 1rem;
  border-right: var(--border);
  transition: 0.3s;
}
header .links a.active,
header .links a:hover {
  background: var(--colorSecondary);
  color: white;
  border-color: transparent;
}
header .links a.active i svg,
header .links a:hover i svg {
  fill: white;
}
header .links a:last-child {
  border: none;
}
header .container {
  padding-right: 0;
}
header .ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1.5rem;
  background: #e8e8e8;
}
header button,
.quote-header button {
  padding: 0;
  height: 4.5rem;
}
.ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  background: #f6f6f6;
}

.btn1 {
  grid-area: 1 / 1 / 2 / 2;
}
.btn2 {
  grid-area: 1 / 2 / 2 / 3;
}
.btn3 {
  grid-area: 2 / 1 / 3 / 3;
}
.btn1 button,
.btn2 button {
  background: var(--text-pera);
}
header .block,
.quote-header .block {
  padding: 1.5rem;
}
.quote-form h3 {
  font-size: 2.3rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}
form input,
.phone-input-container {
  display: block;
  width: 100%;
  height: 5rem;
  border-bottom: var(--border);
  margin-bottom: 1rem;
}
input {
  padding: 0 1rem;
  width: 100% !important;
}
.iti--separate-dial-code .iti__selected-flag {
  background: unset !important;
  font-size: 1.4rem;
}
.iti {
  width: 100%;
}
.phone-input-container input {
  padding-left: 9rem !important;
}
button.anim {
  background-size: 400% 400%;
  animation: Gradient 3s 2s infinite;
  animation-delay: var(--d) !important;
}
@keyframes Gradient {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* hero section */
main,
section,
footer {
  width: calc(100% - 40rem);
}
main {
  height: 100vh;
  max-height: 95rem;
  margin-top: 8rem;
  position: relative;
}
.hero-slider .slider {
  height: 100vh !important;
  max-height: 95rem !important;
  overflow: hidden !important;
}
.slider img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
.information-desk {
  position: absolute;
  top: 1rem;
  z-index: 99;
  left: 1.5rem;
  max-width: 40rem;
  width: 100%;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: #00000020 0px 8px 24px;
}
.information-desk .header {
  background: var(--gradient);
  background-size: 400% 400%;
  animation: Gradient 3s 2s infinite;
}
.information-desk .header h2 {
  font-size: 2rem;
  text-align: center;
  color: white;
  font-weight: 500;
  padding: 1.5rem;
}
.information-desk .body {
  padding: 1.5rem;
}
.information-desk .title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.information-desk .title h3 {
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
}
.information-desk .title p {
  font-size: 1.6rem;
}
.information-desk .title p sub {
  font-size: 1.4rem;
  top: -0.2rem;
  display: inline-block;
  position: relative;
}
.title p span {
  font-weight: 600;
}
.information-desk .info {
  background: #e4e4e4;
  padding: 1.5rem;
  border-radius: 1rem;
}
.information-desk .info p {
  display: grid;
  grid-template-columns: 1fr auto;
}
.information-desk .info span {
  font-weight: 600;
}
.information-desk .planing {
  background: var(--gradient);
  background-size: 400% 400%;
  animation: Gradient 3s 2s infinite;
  margin: 1.5rem 0;
  padding: 3rem;
  position: relative;
}
.planing::before {
  content: "";
  height: calc(100% - 2rem);
  width: calc(100% - 2rem);
  border: 2px dashed white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.planing p {
  text-align: center;
  color: white;
  font-weight: 600;
}
.title h3 sub {
  position: relative;
  font-weight: 500;
  font-size: 1.6rem;
  top: -0.8rem;
}
section {
  background: white;
  padding: 5rem 0;
  margin-bottom: 2rem;
  box-shadow: #00000029 0px 1px 4px;
}
section .title h2 {
  font-size: 3.5rem;
  color: var(--colorSecondary);
  font-weight: 600;
}
section button {
  width: fit-content;
}
.title button {
  margin-top: 1.5rem;
}
section .title p {
  font-size: 1.6rem;
  line-height: 1.8;
}
section .title h3 {
  font-size: 2.5rem;
  color: var(--colorSecondary);
  font-weight: 600;
}
.property-table {
  width: 100%;
  border-collapse: collapse;
}

.property-table th,
.property-table td {
  border: var(--border);
  padding: 8px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
}

.property-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
.property-table button {
  padding: 0.5rem 1rem;
  font-weight: 400;
  font-size: 1.4rem;
}
.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.property-table td span {
  font-weight: 700;
}
.hover-card {
  width: 100%;
  cursor: pointer;
  max-width: 40rem;
  width: 100%;
}
.hover-card .frame button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -300%);
  width: fit-content;
  text-transform: uppercase;
  background: black;
  border: 1px solid white;
  transition: 0.5s;
}
.hover-card .frame::before {
  content: "";
  position: absolute;
  background: #00000062;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateY(110%);
  transition: 0.5s;
}
.hover-card:hover ::before {
  transform: translateY(0);
}
.hover-card:hover button.btn2 {
  transform: translate(-50%, -50%);
}
.hover-card .frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.hover-card .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hover-card button {
  border-radius: 0;
  width: 100%;
}
.hover-card button:hover {
  scale: 1;
}
.title.t2 {
  margin-bottom: 1.5rem;
}
.title.t2 h2 {
  font-size: 2.5rem;
}
.title.t2 h3 {
  color: black;
}
section .block {
  padding: 1.5rem 0;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.title.flex {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.title.flex button {
  margin: 0;
}
.amenities-slider .grid-3 {
  display: grid !important;
}
.card {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card .card-txt {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: linear-gradient(90deg, black, #00000000);
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
  padding: 0 2rem;
  padding-right: 3rem;
  border-left: 5px solid var(--colorPrimary);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.map {
  width: 100%;
}
.map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.grid-3 .cnt {
  display: grid;
  gap: 1.5rem;
}
.grid-3 .cnt p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.mt-3 {
  margin-top: 3rem;
}
.visit-card {
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.visit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.visit-card .content {
  position: absolute;
  width: 100%;
  padding: 3rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #00000073;
  backdrop-filter: blur(20px);
  text-align: center;
}
.visit-card i svg {
  fill: white;
  height: 8rem;
}
.visit-card :is(h2, h3) {
  font-size: 4rem;
  color: white;
  transition: 0.3s;
}
.visit-card h3 {
  font-size: 2.5rem;
  font-weight: 500;
}
.visit-card:hover i svg {
  height: 10rem;
}
.visit-card:hover h2 {
  font-size: 3.5rem;
}
.visit-card:hover h3 {
  font-size: 2rem;
}
.modal-main {
  position: fixed;
  height: 100vh;
  width: 100%;
  background: #00000065;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.modal-main .modal {
  max-width: 70rem;
  width: 100%;
  background: white;
  position: relative;
}
.grid-1-3 {
  grid-template-columns: auto 1fr;
}
.modal .quote-form {
  padding: 3rem;
}
.modal .promise {
  background: #f3f3f3;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.promise i svg {
  height: 5rem;
  fill: var(--colorPrimary);
}
.promise p {
  font-weight: 500;
  color: var(--colorPrimary);
  text-transform: capitalize;
}
.promise h2 {
  font-size: 2rem;
  color: var(--colorPrimary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.modal button {
  width: fit-content;
  margin: auto;
  padding: 1rem 3rem;
  margin-top: 2rem;
}
.modal .quote-form h3 {
  font-size: 2rem;
}
.modal .quote-form h3 span {
  color: red;
}
.modal .logos img {
  height: 5rem;
}
.modal .logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.modal .btn2 button {
  width: 100%;
  border-radius: 0;
  background: var(--colorPrimary);
  font-size: 2rem;
  margin-top: 0;
}
.modal .close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}
section .logo img {
  height: 5rem;
}
section .logo {
  width: fit-content;
  margin: auto;
}
.grid-r-2 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
  margin: 0 0.75rem;
}
.mb {
  display: none;
}
.modal-main.active {
  display: grid;
}
.modal .header {
  background: var(--colorPrimary);
  padding: 1.5rem;
  text-align: center;
}
.modal .header h3 {
  font-size: 2rem;
  color: white;
  font-weight: 500;
  text-transform: capitalize;
}
.modal-main.m1 .header {
  display: none;
}
.bottom-nav-mobile {
  display: none;
}
.anim.rocking {
  animation: 3s 2s infinite Gradient, 3s 2s infinite rocking !important;
  animation-delay: var(--d) !important;
}
@keyframes rocking {
  0%,
  100%,
  25% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}
section a {
  display: inline-block;
}
.anim-blink {
  animation: blink 1.5s linear infinite;
}
@keyframes blink {
  0% {
    scale: 0.9;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.9;
  }
}
.jump {
  animation: jump 1s linear infinite;
}
@keyframes jump {
  0% {
    transform: translateY(-20%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-20%);
  }
}
a {
  cursor: pointer;
}
footer {
  padding: 5rem 0;
  padding-bottom: 0;
}
footer p span {
  font-weight: 600;
}
footer .copy {
  padding: 3rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}
footer .copy :is(p, a) {
  font-size: 1.4rem;
}
footer .copy a {
  text-decoration: underline;
}
@media (max-width: 1680px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 1340px) {
  html {
    font-size: 45%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 62%;
  }
  header {
    height: 8rem;
  }
  header .container {
    padding: 0 1.5rem;
  }
  header .links {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
    height: calc(100vh - 8rem);
    background: white;
    width: 100%;
    left: 0;
    top: 8rem;
    transition: 0.5s;
    transform: translateX(-105%);
  }
  header .links.active {
    transform: translateX(0);
  }
  header .links a {
    height: unset;
    padding: 1rem;
    border: none;
    border-bottom: var(--border);
    width: 100%;
  }
  header,
  section,
  main {
    width: 100%;
  }
  .toogle-menu {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    justify-content: space-around;
    gap: 0.8rem;
    width: 3rem;
    height: 2.5rem;
    cursor: pointer;
  }
  .toogle-menu > span {
    width: 100%;
    height: 2px;
    border-radius: 1rem;
    background: var(--text-pera);
  }
  .toogle-menu > span:first-child {
    width: 50%;
    margin-left: auto;
  }
  .toogle-menu > span:last-child {
    width: 80%;
    margin-left: auto;
  }

  .toogle-menu > span:first-child,
  .toogle-menu > span:last-child {
    margin-left: unset;
    transition: all 0.3s ease 0s;
  }
  .toogle-menu.active span:first-child,
  .toogle-menu.active span:last-child {
    width: 100%;
  }
  [class*="grid"] {
    grid-template-columns: 1fr !important;
  }

  .property-table,
  .property-table thead,
  .property-table tbody,
  .property-table th,
  .property-table td,
  .property-table tr {
    display: block;
    border: none !important;
    text-align: center !important;
  }

  .property-table th {
    display: none;
  }
  .property-table tr {
    border: var(--border) !important;
    padding: 1rem !important;
  }
  .property-table thead tr {
    border: none !important;
    padding: 0;
  }
  tbody tr:nth-child(odd) {
    background: #f5f5f5 !important;
  }
  .property-table td {
    text-align: right;
    position: relative;
  }

  .property-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 100%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }

  .property-table td button {
    display: block;
    width: 100%;
  }
  tr td:nth-child(1) {
    font-size: 3rem !important;
    font-weight: 600;
  }
  tr td {
    font-weight: 400;
  }
  tr td:nth-child(3) {
    font-weight: 700;
  }
  td button {
    width: fit-content !important;
    margin: auto;
    font-size: 1.6rem !important;
  }
  .information-desk {
    position: relative;
    max-width: 100%;
    box-shadow: none;
    left: unset;
    top: unset;
    border-radius: 0;
  }
  main {
    display: flex;
    flex-direction: column-reverse;
    height: unset !important;
    max-height: unset;
  }
  .title.flex {
    grid-template-columns: 1fr;
  }
  .hero-slider,
  .hero-slider .slider {
    height: 30rem !important;
  }
  .quote-header {
    position: relative;
    background: linear-gradient(-45deg, #f1f1f1, #c8c8c8, #f1f1f1, #c8c8c8);
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite;
    -moz-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
    height: fit-content;
    animation-delay: 1s;
    width: 100%;
    max-width: 100%;
  }
  .quote-header .ctas {
    display: none;
  }
  section .title h2 {
    font-size: 2.5rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .title {
    text-align: center;
  }
  .title.flex {
    gap: 0 !important;
  }
  .title.flex button {
    display: none !important;
  }
  .mb {
    display: block;
    margin: auto;
    margin-top: 1.5rem;
  }
  .hover-card .frame button {
    width: 90%;
  }
  .visit-card {
    aspect-ratio: 1/1;
  }
  .visit-card :is(h2, h3) {
    font-size: 3rem;
  }
  .visit-card h3 {
    font-size: 2rem;
  }
  .visit-card:hover h2 {
    font-size: 2.5rem;
  }
  .visit-card:hover h3 {
    font-size: 2.3rem;
  }
  .title button {
    margin: auto;
    margin-top: 1.5rem;
  }
  .modal-main .modal {
    width: 100%;
    margin: auto;
  }
  .modal-main .grid-1-3 .promise {
    display: none;
  }
  .modal .quote-form {
    padding: 1rem;
  }
  .modal .quote-form h3 {
    font-size: 1.6rem;
  }
  .bottom-nav-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    background: var(--colorPrimary);
    z-index: 999;
    width: 100%;
  }
  .bottom-nav-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border-right: var(--border);
    border-color: white;
  }
  .bottom-nav-mobile a:last-child {
    border: none;
  }
  .bottom-nav-mobile :is(a, i) svg {
    fill: white;
    height: 2rem;
  }
  .bottom-nav-mobile :is(a, i) {
    color: white;
    font-size: 1.4rem;
  }
  footer {
    margin-bottom: 4rem;
    width: 100%;
  }
  footer .copy {
    flex-direction: column;
    gap: 1.5rem;
  }
}
