@charset "UTF-8";
/*
 Theme Name: Leigia Bootstrap
 Theme URI: http://leigia.com
 Description: WordPress Theme built using the latest version of Bootstrap.
 Version: 1.0.0
 Author: Alvin Araujo
 Author URI: http://leigia.com
 Tags: Blank, HTML5, CSS3, Bootstrap
 License: MIT
 License URI: http://opensource.org/licenses/mit-license.php
 Text Domain: leigiabootstrap
*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body:not(.wp-admin) {
  background-color: var(--wp--preset--color--secondary);
  color: #d6d6d6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
}
button:disabled {
  cursor: not-allowed !important;
}

.has-global-padding {
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}

/*
Layout
*/
.entry-content {
  margin-top: 0;
}

.wp-site-blocks .wp-block-post-content > .wp-block-group,
.block-editor .is-root-container > *,
main > * {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  margin-block-start: 0;
}

@media only screen and (min-width: 992px) {
  .wp-site-blocks .wp-block-post-content > .wp-block-group,
  .block-editor .is-root-container > *,
  main > * {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
/* DEPRECATED: Old button/read-more styles below; superseded by new block further down. */
/*
Responsive Menu Modal
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #000;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 76%, rgb(0, 0, 0) 100%);
}
header.affix {
  background: var(--wp--preset--color--black);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
header.affix .wp-block-site-logo {
  max-width: 225px;
}
header .wp-block-navigation__responsive-container.has-modal-open.is-menu-open div {
  min-height: 100%;
  height: 100%;
}
header .wp-block-navigation__responsive-container.is-menu-open.has-modal-open {
  background: var(--wp--preset--color--black) !important;
  color: var(--wp--preset--color--white) !important;
}
header .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation__responsive-container-content {
  justify-content: center;
  padding-top: 0;
}
header .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation {
  width: 100%;
  flex-grow: 0;
  align-items: center;
}
header .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation li {
  padding: 1em;
}

/*
Marquee
*/
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}
.marquee .marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-left 30s linear infinite;
}
.marquee .marquee-content img {
  display: inline-block;
  vertical-align: middle;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*
Footer
*/
footer {
  margin-top: 0;
}
footer .wp-block-navigation .wp-block-navigation-item {
  position: relative;
  padding-left: 10px;
  /* space for the bullet */
}
footer .wp-block-navigation .wp-block-navigation-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--wp--preset--color--dark-gray);
  /* Change color as needed */
  transform: translateY(-50%);
}

/*
Contact Form 7
*/
.wpcf7 {
  width: 100%;
}
.wpcf7 .wpcf7-form {
  padding: 10px;
  background: var(--wp--preset--color--white);
}
.wpcf7 .wpcf7-form label {
  width: 100%;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--wp--preset--color--dark-gray);
}
.wpcf7 .wpcf7-form .wpcf7-form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--wp--preset--color--black);
  background-clip: padding-box;
  border: 1px solid var(--wp--preset--color--dark-gray);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.wpcf7 .wpcf7-form .wpcf7-form-control:focus {
  border-color: var(--wp--preset--color--black);
}
.wpcf7 .wpcf7-form textarea.wpcf7-form-control {
  height: 50px;
}
.wpcf7 .wpcf7-form [type=text] {
  color: var(--wp--preset--color--black);
}
.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-submit {
  padding: 0.5rem 2.5 rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--black);
  border-radius: 2.1875 rem;
  max-width: 300px;
  margin: 0 auto;
  border: 0;
}
.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-submit:focus {
  background: var(wp--preset--color--light-black);
}

.styled-form .wpcf7-form {
  position: relative;
  background: var(--wp--preset--color--white);
  max-width: 500px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
}
.styled-form .wpcf7-form:before {
  content: "";
  width: 50%;
  height: calc(100% + 30px);
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--wp--preset--color--primary) !important;
  z-index: -1;
  border-radius: 10px 0 0 10px;
}
.styled-form .wpcf7-form textarea {
  height: 100px !important;
}
.styled-form .wpcf7-form .wpcf7-form-control.wpcf7-submit {
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--wp--preset--color--primary) !important;
}

/*
Utility
*/
.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

@media only screen and (min-width: 992px) {
  .d-md-block {
    display: block !important;
  }
}
.text-center {
  text-align: center;
}

.justify-center {
  justify-content: center;
}

.fw-bold {
  font-weight: 700;
}

/*
CTA - Whatsapp Book Now
*/
.floating-buttons {
  position: fixed;
  z-index: 99;
  bottom: 15px;
  right: 15px;
}

@media screen and (min-width: 768px) {
  .floating-buttons {
    right: 90px;
    bottom: 50px;
  }
}
/*
Pulsating add colors in .pulsating-circle:before, .pulsating-circle:after, .pulsating-circle i animations
*/
.pulsating-circle {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.pulsating-circle i {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 30px !important;
  line-height: 30px;
  font-size: 2em;
  text-align: center;
  color: #25d366;
}
.pulsating-circle:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background: #0d6f45;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulsating-circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(116, 76, 7, 0.3);
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
body:not(.wp-admin) .section-hero {
  background-image: url("https://www.ewissen.in/_next/static/media/next.4613f602.svg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
body:not(.wp-admin) .shape-container {
  height: 120vh;
  background-color: #000;
  border-top-left-radius: 50vw;
  border-top-right-radius: 50vw;
  position: relative;
  overflow: hidden;
  margin-top: 5em;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media only screen and (min-width: 992px) {
  body:not(.wp-admin) .shape-container {
    height: 100vh;
  }
}
body:not(.wp-admin) .shape {
  background-image: url("http://localhost/ewissen-wp/wp-content/uploads/2025/10/AdobeStock_620343933.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-top-left-radius: 50vw;
  border-top-right-radius: 50vw;
  bottom: 0;
}
body:not(.wp-admin) .shape,
body:not(.wp-admin) .shape:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
body:not(.wp-admin) .shape:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
body:not(.wp-admin) .shape-content {
  position: absolute;
  bottom: 20vh;
  left: 0;
  right: 0;
  color: var(--wp--preset--color--white);
  z-index: 1;
}

/*
Property - Key Features and Landmarks Styles
*/
.key-features .features-list,
.nearby-landmarks .landmarks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  /* added space between items */
}

.key-features .feature-item,
.nearby-landmarks .landmark-item {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .key-features .feature-item,
  .nearby-landmarks .landmark-item {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}
.key-features .feature-item .feature-key {
  font-size: var(--wp--preset--font-size--large);
}
.key-features .feature-item .feature-icon {
  font-size: var(--wp--preset--font-size--x-large);
}

.key-features .feature-item .feature-key,
.nearby-landmarks .landmark-item .landmark-key {
  color: var(--wp--preset--color--white);
}

/*
Nav Tabs
*/
.nav-tabs-block.is-two-col {
  position: relative;
}
.nav-tabs-block.is-two-col .tab-panel {
  padding: 0;
  margin-bottom: 2em;
}
.nav-tabs-block.is-two-col .tabs-next,
.nav-tabs-block.is-two-col .tabs-prev {
  background-color: var(--wp--preset--color--primary);
}
.nav-tabs-block .nav-link.active,
.nav-tabs-block .nav-tab-block.is-active .tab-trigger {
  background-color: var(--wp--preset--color--primary);
}
.nav-tabs-block .nav-link.active::after,
.nav-tabs-block .nav-tab-block.is-active .tab-trigger::after {
  border-color: var(--wp--preset--color--primary) transparent transparent transparent;
}
.nav-tabs-block .tab-panel {
  border: none;
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.nav-tabs-block .tab-trigger .wp-block-heading {
  white-space: nowrap;
}
.nav-tabs-block .nav.nav-tabs {
  margin-bottom: 1em;
  justify-content: start;
  overflow-x: scroll;
  padding-bottom: 1em;
}
@media only screen and (min-width: 992px) {
  .nav-tabs-block .nav.nav-tabs {
    justify-content: center;
    overflow-x: visible;
  }
}

.location iframe {
  min-height: 450px;
}

/*
Cover
*/
.wp-block-cover.has-gradient-overlay-cover .wp-block-cover__background {
  background: var(--wp--preset--color--black);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%) !important;
  opacity: 1 !important;
}

.wp-block-cover.has-rounded-cover {
  border-radius: 10px;
}

/*
Swiper Slider
*/
.wp-block-ls-blocks-carousel .main-swiper .swiper-button-next:after,
.wp-block-ls-blocks-carousel .main-swiper .swiper-button-prev:after {
  color: var(--wp--preset--color--primary);
}
.wp-block-ls-blocks-carousel .main-swiper .swiper-horizontal > .swiper-pagination-bullets,
.wp-block-ls-blocks-carousel .main-swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.wp-block-ls-blocks-carousel .main-swiper .swiper-pagination-custom,
.wp-block-ls-blocks-carousel .main-swiper .swiper-pagination-fraction {
  position: static;
  margin-top: 1em;
}
.wp-block-ls-blocks-carousel .main-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.wp-block-ls-blocks-carousel .main-swiper .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet,
.wp-block-ls-blocks-carousel .main-swiper .swiper-pagination-custom .swiper-pagination-bullet,
.wp-block-ls-blocks-carousel .main-swiper .swiper-pagination-fraction .swiper-pagination-bullet {
  background-color: var(--wp--preset--color--primary);
  width: 12px;
  height: 12px;
}

/*
offset-hero-content
*/
.offset-hero-content {
  margin-block-start: 20vh !important;
}

/*
Images Grid
*/
.project-images .images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
@media only screen and (min-width: 992px) {
  .project-images .images-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.project-images .images-grid .project-image-item a {
  display: block;
  width: 100%;
  height: 200px;
}
.project-images .images-grid .project-image-item a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.projects-grid ul.wp-block-post-template {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1em;
}
@media only screen and (min-width: 992px) {
  .projects-grid ul.wp-block-post-template {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .projects-grid ul.wp-block-post-template {
    grid-template-columns: repeat(3, 1fr);
  }
}
.projects-grid ul.wp-block-post-template li {
  margin-top: 0 !important;
}

/*
Quote
*/
/*
Home Quote
*/
blockquote {
  position: relative;
}
blockquote:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f10e";
  position: absolute;
  left: 0;
  top: -0.5em;
  opacity: 0.075;
  font-size: 10em;
  right: 0;
  margin: 0 auto;
  width: max-content;
  color: var(--wp--preset--color--off-white);
}

/*
Buttons
*/
/* OLD BUTTONS BLOCK: start (commented out)
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-read-more {
    color: inherit;

    &::after {
        content: "→";
        display: inline-block;
        margin-left: 0.5rem;
        font-weight: bold;
    }
}
/* Buttons (overrides for links and Read More) */
.wp-block-button .wp-block-button__link,
.wp-element-button,
.wp-block-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25em;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white) !important;
}

.is-style-outline .wp-block-button__link,
.wp-element-button.is-style-outline,
.wp-block-read-more.is-style-outline {
  background: transparent;
  border: 2px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white) !important;
}

.wp-block-button .wp-block-button__link::after,
.wp-element-button::after,
.wp-block-read-more::after {
  content: "→";
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: bold;
}

/*
Featured Amenities - Single Property
*/
.featured-amenities > div {
  text-align: center;
  background: var(--wp--preset--color--secondary);
  padding: 5px;
  border-radius: 5px;
}
.featured-amenities > div .wp-block-ls-blocks-icon-selector {
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--x-large);
}
.featured-amenities > div p {
  color: var(--wp--preset--color--off-white);
}

/*
Alternative image/text columns
*/
/* Desktop only */
@media only screen and (min-width: 992px) {
  /* Select every even wp-block-columns */
  .has-alternating-order {
    flex-direction: row-reverse;
  }
}
/*
Styled Key Features
*/
.styled-key-features .features-list {
  display: grid;
}
@media only screen and (min-width: 992px) {
  .styled-key-features .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.styled-key-features .features-list .feature-key {
  font-size: var(--wp--preset--font-size--medium);
  margin-bottom: var(--wp--preset--spacing--small);
  color: var(--wp--preset--color--white);
}
.styled-key-features .features-list .feature-value {
  color: var(--wp--preset--color--gray);
}/*# sourceMappingURL=style.css.map */