/* Variables Import */
@import "./variables.css";

/* Top Bar */
/* MODAL */
.modal-xl {
  --bs-modal-width: 980px;
}

.mainModal input,
.mainModal select,
.mainModal select:focus {
  padding: 10px 15px;
  width: 100%;
  outline: none;
  border: 0;
  border: 1px solid var(--primary);
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: none;
}

.mainModal .image {
  height: 470px;
}

.mainModal .image img {
  height: 100%;
  object-fit: cover;
}

.mainModal .dismiss-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--primary);
  border: none;
  color: var(--white);
}

.mainModal .modal-body {
  padding: 0 !important;
  border-radius: 0;
}

.mainModal .button {
  padding: 10px 15px;
}

/* MODAL END */

/* whatsapp button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 2%;
  z-index: 999;
}

.whatsapp-button .icon {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-button i {
  font-size: 25px;
  border-radius: 50%;
  color: #fff;
}
/* whatsapp button end*/

/* enquire button */
.enquire-button {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  z-index: 999;
}

.enquire-button .button {
  padding: 5px;
  border-radius: 0;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
}

.enquire-button span {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  margin-inline: 20px;
}

.enquire-button span i {
  transform: rotate(90deg);
  margin-top: 10px;
  margin-bottom: 10px;
}
/*enquire button end*/

/* Header */

.navbar {
  position: sticky;
  top: 0;
  z-index: 111;
  background-color: var(--white) !important;
  padding: 15px 0;
  width: 100%;
  transition: 0.5s all ease;
}

.px-nav {
  padding-inline: 3.5rem;
}

.navbar.sticky {
  box-shadow: var(--button-shadow);
  padding: 15px 0;
}

.navbar .collapse .navbar-nav1 {
  flex: 2;
  justify-content: center;
}

.nav-link {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 18px !important;
  transition: 0.5s all ease;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.navbar .navbar-nav .button i {
  margin-left: 10px;
}

.navbar .navbar-brand .logo {
  width: 100px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-nav .modal-button {
  display: block;
  color: var(--primary);
  font-weight: 500;
}
.navbar .navbar-nav .modal-button::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: var(--secondary);
}
/* Header end*/

/* Hero */
.hero {
  position: relative;
  padding-bottom: 50px;
}
.hero .image-box {
  height: calc(90vh - 170px);
  overflow: hidden;
  border-radius: 20px;
  overflow: hidden;
}
.hero .image-box img {
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.hero .text-box {
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  max-width: 700px;
}
.hero .text-box .heading {
  color: var(--light);
  text-transform: uppercase;
  font-size: 60px;
  letter-spacing: 3px;
}

.hero p {
  color: var(--light);
  font-size: 18px;
}

.hero .banner-button {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero .banner-button a {
  font-size: 14px;
  padding: 10px 15px;
  text-transform: none;
  font-weight: 500;
}
/* Hero end*/

/* about us */
.about-us p {
  line-height: 31.2px;
}
.about-us .image-box {
  position: relative;
  overflow: hidden;
  padding-inline: 100px;
  height: 100%;
}
.about-us .image-box img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-us .button {
  padding: 10px 25px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--open-sans);
}
/* about us end */

/* units */
.units .background-box {
  background-color: var(--cyan-light);
  border-radius: 20px;
}
.units .inner-title {
  font-weight: 600;
}
.units .property-box {
  margin-inline: 25px;
  position: relative;
}
.units .property-column:first-child .property-box {
  margin-left: 0;
}
.units .image-box {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.units .image-box img {
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  transition: 0.5s all ease;
}
.units .property-box:hover img {
  transform: scale(1.05);
}
.units .detail-box {
  position: absolute;
  bottom: -35px;
  right: 0;
  width: 90%;
  background: var(--secondary);
  padding: 25px 25px;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 6px solid var(--ternary);
}
.units .detail-box .inner-title {
  color: var(--light);
  font-family: var(--title-font);
  font-size: 28px;
}
.units .detail-box p {
  color: var(--ternary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans-serif);
}
.units .detail-box .button {
  padding: 10px 40px;
}
/* units end*/

/* floor plans */
.floor-plan .inner-title {
  color: var(--black);
  position: relative;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.floor-plan .inner-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 2px;
}

.dark-background {
  background-color: var(--secondary);
}
.dark-background .inner-title {
  color: var(--light);
}
.dark-background .inner-title::after {
  background-color: var(--light);
}

.light-background {
  background-color: #f0f0f0;
}
.light-background .inner-title::after {
  background-color: var(--black);
}

.floor-plan .floor-carousel .owl-item .plan-box {
  padding: 50px;
  transition: 0.5s all ease;
  border-radius: 10px;
}

/* floor plans end */

/* gallery  */

.gallery .image-text {
  position: relative;
  cursor: pointer;
  height: 100%;
}

.gallery .image-text .image-box {
  position: relative;
  max-height: 340px;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.gallery .image-text .image-box img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s all ease;
}
.gallery .image-text .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2d2e32;
  opacity: 0;
  pointer-events: none;
}
.gallery .image-text:hover .image-box img {
  transform: scale(1.05);
}

.gallery .image-text .text-box {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: 2;
}
.gallery .image-text .inner-title {
  font-size: 24px;
  color: var(--light);
  font-family: var(--title-font);
}
/* gallery end */

/* amenities  */
.amenities .icon-text .icon img {
  filter: brightness(0) invert(23%) sepia(6%) saturate(5350%) hue-rotate(172deg) brightness(95%) contrast(93%);
  width: 80px;
}
.amenities .icon-text .text .inner-title {
  color: var(--ternary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 20px;
}
.amenities .icon-text {
  padding-inline: 20px;
}
.amenities .icon-text .text p {
  color: var(--dark);
  font-weight: 500;
  font-size: 18px;
}

.amenities .amenities-column:first-child .icon-text {
  padding-left: 0;
}
.amenities .amenities-column:last-child .icon-text {
  padding-right: 0;
}

/* amenities end */

/* footer */
.footer {
  background-color: var(--secondary);
  padding-bottom: 50px;
}

.footer .footer-items p {
  color: #a0a0a0;
}

.footer .inner-title,
.footer .logo-text,
.footer .list,
.footer p,
.footer .list .list-link {
  color: var(--light);
}
.footer .inner-title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.footer .list-link {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  transition: 0.5s all ease;
}
.footer .list-link:hover {
  opacity: 0.7;
}

.footer .contact-list .list .list-link {
  display: flex;
  align-items: flex-start;
}
.footer .contact-list .list .list-link .icon {
  display: flex;
  align-items: flex-start;
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: #ac835d;
  transition: 0.5s all ease;
}
.footer .contact-list .list .list-link .text {
  width: calc(100% - 30px);
}

.footer form .input-button {
  display: flex;
  gap: 8px;
}
.footer form p {
  font-size: 12px;
}
.footer form .input-button input {
  background-color: var(--black);
  border: none;
  box-shadow: 0px 0px 3px 0px #ac835d;
  border-radius: 3px;
}
.footer form .input-button input {
  color: var(--light);
}

.footer .form-floating > .form-control:focus ~ label {
  color: var(--light);
}
.footer .form-floating > .form-control:focus ~ label::after {
  background-color: transparent;
}
.footer form .input-button label {
  color: var(--light);
}
.footer form .input-button button {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b66f4a;
  color: var(--light);
  border: 0;
  border-radius: 3px;
  box-shadow: none;
}
.footer form .input-button button i {
  font-size: 28px;
  transform: rotate(45deg);
}

.footer .divider {
  opacity: 1;
  border: 1px solid var(--primary);
}

.footer .copyright-box {
  display: flex;
  align-items: center;
}
.footer .copyright-box p {
  width: 100%;
  margin-left: 120px;
  color: #77797c;
}

.footer .copyright-box .link {
  color: #77797c;
  transition: 0.5s all ease;
}
.footer .copyright-box .link:hover {
  opacity: 0.7;
}

.footer .copyright-box .follow-icons {
  width: fit-content;
}

.footer .copyright-box .follow-icons {
  display: flex;
  gap: 30px;
}
.footer .copyright-box .follow-icons .list .list-link {
  color: #ac835d;
}

/* Responsive */
@media (max-width: 1280px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 992px) {
}
@media (max-width: 767px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }
}
@media (max-width: 600px) {
}
