@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box !important;
  line-height: 1.4;
}

html {
  background-color: #D2F3FD;
  font-size: 16px;
}

a:visited {
  color: inherit;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: "Inter";
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-family: "Lora";
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  font-family: "Lora";
  font-weight: 600;
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.9rem);
  font-family: "Lora";
  font-weight: 500;
}

h5 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-family: "Lora";
  font-weight: 500;
}

h6 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: "Lora";
  font-weight: 500;
}

p {
  font-size: clamp(1rem, 2.5vw, 1.05rem);
  font-family: "Lora";
  font-weight: 400;
}

.container {
  width: min(90%, 80rem);
  margin: 0 auto;
}

.navBar {
  position: sticky;
  z-index: 999 !important;
}
.navBar .container {
  display: flex;
  justify-content: space-between;
  margin-block: auto;
  padding-block: 1rem;
  align-items: center;
}
.navBar .logo {
  width: 3.5rem;
  margin-block: auto;
}
.navBar .menu {
  cursor: pointer;
  width: 2rem;
}
.navBar nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 99999 !important;
  transform: translateY(-100%);
  background-color: #0B556F;
  transition: background-color 0.3s linear, transform 0.3s linear;
}
.navBar nav .close {
  margin-inline-start: auto;
  width: 4rem;
  outline: #D2F3FD;
  fill: #D2F3FD;
  cursor: pointer;
  margin-top: 1rem;
  z-index: 999;
}
.navBar nav ul {
  list-style-type: none;
  margin-bottom: 10rem;
}
.navBar nav ul li {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.navBar nav ul li:nth-child(1) {
  transition-delay: 0.24s;
}
.navBar nav ul li:nth-child(2) {
  transition-delay: 0.3s;
}
.navBar nav ul li:nth-child(3) {
  transition-delay: 0.36s;
}
.navBar nav ul li:nth-child(4) {
  transition-delay: 0.42s;
}
.navBar nav ul a {
  text-decoration: none;
  color: #D2F3FD;
}

.active {
  background-color: #0B556F !important;
  transform: translateX(0%) !important;
  z-index: 999 !important;
}
.active li {
  opacity: 1 !important;
  transition-delay: 0s;
}

@media (min-width: 750px) {
  .navBar .container {
    justify-content: center;
    position: relative;
    align-items: center;
  }
  .navBar .container nav {
    display: flex;
    flex-direction: row;
    position: unset;
    height: auto;
    transform: translateY(0);
    margin: 0;
    background-color: transparent;
    width: 100%;
    align-self: center !important;
    justify-content: center;
    margin-right: 9rem;
  }
  .navBar .container nav ul {
    display: flex;
    padding: 0;
    margin-left: 5rem;
    margin-block: auto;
    gap: 5.5vw;
  }
  .navBar .container nav ul li {
    opacity: 1;
    margin: 0;
  }
  .navBar .container nav ul a {
    color: #000;
    cursor: pointer;
    padding-inline: 0;
    padding-block: 0;
    width: -moz-max-content;
    width: max-content;
    transition: color 0.2s ease;
  }
  .navBar .container nav ul a:hover {
    color: #00275b;
    transition: color 0.2s ease;
  }
  .navBar .container nav .close {
    display: none;
  }
  .menu {
    display: none;
  }
}
@media (min-width: 1000px) {
  .navBar .container nav ul {
    gap: 4rem;
  }
}
footer {
  background-color: #0B556F;
  color: #fff;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
footer .container div {
  margin-block: 2.5rem;
  line-height: 1.2;
}
footer .container div h3 {
  font-weight: 500;
  margin-block-end: 0.8rem;
  margin-block-start: 0rem;
}
footer .container div h4 {
  margin-block: 0.3rem;
  font-size: max(0.8rem, 0.74vw);
  font-weight: 400;
}
footer .container div h4 a {
  text-decoration: none;
  color: #fff !important;
}

.banner {
  width: 100%;
  height: 80vh;
  position: relative;
  z-index: -1;
}
.banner .slider {
  position: absolute;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.banner .slider #slideImg {
  animation: zoom 3s linear infinite;
  z-index: -1;
  width: 100%;
  height: 80vh;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .overlay {
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.587));
  width: 60%;
  height: 80vh;
  z-index: 3;
}
.banner .heroText {
  position: absolute;
  z-index: 99;
  width: min(90%, 80rem);
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.banner .heroText h1 {
  position: absolute;
  z-index: 999;
  color: #fff;
  width: 50%;
  text-align: left;
}

@media (max-width: 650px) {
  .banner .heroText h1 {
    position: absolute;
    z-index: 99;
    color: #fff;
    width: 100%;
    font-size: 2.5rem;
    text-align: center;
  }
  .banner .overlay {
    width: 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(1.1);
  }
  15% {
    transform: scale(1);
  }
  85% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.ourHotProperties div h2 {
  margin-block-end: 0.5rem;
  color: #0B556F;
}

.wrap {
  margin-block-end: 4rem;
}
.wrap .card-wrapper {
  margin-inline: 3rem;
  overflow: hidden;
}
.wrap .card-wrapper ul {
  padding-left: 0 !important;
}

.rightPlace {
  text-align: center;
}
.rightPlace .container .flex .rightPlaceImg .rightPlaceComputerImg {
  display: none;
}
.rightPlace .container .flex .rightPlaceImg .rightPlaceMobileImg {
  width: 100%;
}

@media (min-width: 800px) {
  .rightPlace .container .flex {
    display: flex;
    width: 100%;
    align-items: center;
    gap: calc(2vw + 2.5rem);
  }
  .rightPlace .container .flex .rightPlaceText {
    width: 100%;
    text-align: left;
  }
  .rightPlace .container .flex .rightPlaceText h2 {
    margin-block-end: 5rem;
  }
  .rightPlace .container .flex .rightPlaceImg .rightPlaceMobileImg {
    display: none;
  }
  .rightPlace .container .flex .rightPlaceImg .rightPlaceComputerImg {
    display: initial;
    width: 100%;
  }
}
.aboutUs {
  margin-top: 3rem;
  background-image: url("img/aboutUsImage.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  padding: 3rem 2rem 3rem 1rem;
}
.aboutUs .container .aboutUsText {
  background-color: #fff;
  border-radius: 0.3rem;
  padding: max(1rem, 2vw);
  padding-bottom: 8vw;
  width: min(80%, 20rem);
}
.aboutUs .container .aboutUsText h2 {
  margin-block: 0.5rem;
}

.contactUsPage {
  margin-block: 3rem;
}
.contactUsPage .container h1 {
  text-align: center;
}
.contactUsPage .container h4 {
  text-align: center;
}
.contactUsPage .container .contactForm {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
}
.contactUsPage .container .contactForm h3 {
  text-align: left;
  padding-block: 0.5rem;
  margin-block: 0;
}
.contactUsPage .container .contactForm form label {
  display: block;
  padding-block: 1rem 0.2rem;
}
.contactUsPage .container .contactForm form label {
  font-size: clamp(1rem, 2vw, 1.5rem);
}
.contactUsPage .container .contactForm form input, .contactUsPage .container .contactForm form textarea {
  font-size: clamp(1rem, 2vw, 1.5rem);
  padding-block: 0.3rem;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}
.contactUsPage .container .contactForm form input[type=submit] {
  margin-block: 1.6rem 0.5rem;
  background-color: #D2F3FD;
  border-radius: 0.3rem;
  border: none;
  padding-block: 0.5rem;
}
.contactUsPage .container .contactInformation h3 {
  text-align: left !important;
}
.contactUsPage .container .contactInformation h4 {
  margin-block: 2rem;
  text-align: left;
}
.contactUsPage .container .contactInformation h5 {
  margin-block: 1rem 0;
}
.contactUsPage .container .contactInformation h6 {
  font-weight: 400;
  margin-block: 0 1rem;
}
.contactUsPage .container .contactInformation iframe {
  width: 100%;
  aspect-ratio: 1/2;
  margin-block-end: 3rem;
}

@media (min-width: 550px) {
  .contactUsPage .container h1, .contactUsPage .container h4 {
    text-align: left;
    width: 50%;
  }
  .contactUsPage .container .flexContactUs {
    display: flex;
    gap: calc(8vw + 3rem);
    justify-content: space-around;
    justify-content: flex-start;
  }
  .contactUsPage .container .flexContactUs .contactForm {
    padding: 1.5rem 3rem;
  }
  .contactUsPage .container .flexContactUs iframe {
    aspect-ratio: initial;
  }
}
.gridProperties {
  margin-block-end: 4rem;
  display: grid;
  gap: 2rem;
  padding: 2.6rem;
  grid-template-columns: repeat(1, 1fr);
}

a {
  text-decoration: none;
  display: flex;
  height: 100%;
}

.propertyCard {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #000;
  background-color: #D2F3FD;
  box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.2352941176);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0.8rem;
}
.propertyCard img {
  aspect-ratio: 1920/1080;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.propertyCard h3 {
  color: #0B556F;
}
.propertyCard * {
  margin-block: 0.4rem;
}
.propertyCard:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  border-width: thin;
  border-radius: inherit;
}

#property-filter {
  margin-block-start: 1rem;
  background-color: #6BDCFF;
  padding-block: 2rem;
}
#property-filter .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
#property-filter .container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Montserrat", sans-serif;
  background-color: #C3F1FF;
  border: none;
  padding: 0.5rem 2rem 0.5rem 0.8rem;
  width: 100%;
  border-radius: 0;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='144' viewBox='0 0 24 24' width='144' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 1.2em auto;
}
#property-filter .container select::-ms-expand {
  display: none;
}
#property-filter .container select option {
  font-family: "Montserrat", sans-serif;
}
#property-filter .container button {
  background-color: #FF9A25;
  color: #fff;
  border: none;
  padding-block: 0.5rem;
  font-weight: 600;
}

@media (min-width: 750px) {
  #property-filter {
    margin-block-start: 0;
  }
  #property-filter .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 940px) {
  #property-filter .container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1340px) {
  #property-filter .container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 600px) {
  .gridProperties {
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .gridProperties .propertyCard * {
    margin-block: 0;
  }
  .gridProperties .propertyCard img {
    margin-block-end: 0.5rem;
  }
}
@media (min-width: 900px) {
  .gridProperties {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .gridProperties {
    grid-template-columns: repeat(4, 1fr);
  }
}
.carousel-container {
  position: relative;
  width: 90%; /* Adjust width as needed */
  margin: auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease-in-out;
}

.propertyCard {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #000;
  background-color: #D2F3FD;
  box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.2352941176);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0.8rem;
  height: 400px;
}

.propertyCard img {
  aspect-ratio: 16/7;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.propertyCard h3 {
  color: #0B556F;
}

.propertyCard * {
  margin-block: 0.4rem;
}

.propertyCard:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.nav-btn {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.8rem 0.8rem;
  cursor: pointer;
}

.left-btn {
  left: -40px; /* Adjust as needed */
}

.right-btn {
  right: -40px; /* Adjust as needed */
}

.propertyPage .container .flexPropertyPage .propertyPageText .price {
  color: #0B556F;
}
.propertyPage .container .flexPropertyPage .propertyPageText a {
  background-color: #93DEF4;
  display: inline;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: 0.2rem;
}
.propertyPage .container .flexPropertyPage .propertyPageText .propertyPageTable {
  background-color: #93DEF4;
}
.propertyPage .container .flexPropertyPage .propertyPageText .propertyPageTable ul {
  list-style-type: none;
  padding-block: 0.3rem;
  padding-left: 0.8rem;
}
.propertyPage .container .flexPropertyPage .propertyPageText .propertyPageTable ul li {
  margin-block: 0.5rem;
  display: block;
  position: relative;
}
.propertyPage .container .flexPropertyPage .propertyPageText .propertyPageTable ul li::after {
  content: "";
  display: block;
  position: absolute;
  width: 95%;
  height: 1px;
  background-color: rgb(255, 255, 255);
}
.propertyPage .container .flexPropertyPage .propertyPageImagesEven img, .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}
.propertyPage .container .flexPropertyPage .propertyPageImagesEven img:last-child, .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img:last-child {
  margin-bottom: 3rem;
}

@media (min-width: 550px) {
  .propertyPage .container .flexPropertyPage .propertyPageImagesEven, .propertyPage .container .flexPropertyPage .propertyPageImagesOdd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    align-items: start;
    height: -moz-min-content;
    height: min-content;
    gap: 1rem;
    margin-top: 4rem;
  }
  .propertyPage .container .flexPropertyPage .propertyPageImagesEven img:first-child, .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img:first-child {
    grid-column: 1/-1;
  }
}
@media (min-width: 850px) {
  .propertyPage .container .flexPropertyPage {
    display: flex;
    gap: 3rem;
  }
  .propertyPage .container .flexPropertyPage .propertyPageImagesEven, .propertyPage .container .flexPropertyPage .propertyPageImagesOdd, .propertyPage .container .flexPropertyPage .propertyPageText {
    max-width: 50%;
  }
  .propertyPage .container .flexPropertyPage .propertyPageImagesEven img img, .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img img {
    aspect-ratio: 16/9 !important;
  }
  .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img:nth-child(2), .propertyPage .container .flexPropertyPage .propertyPageImagesEven img:nth-child(2) {
    grid-column: 1/-1;
  }
}
@media (min-width: 1150px) {
  .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img:nth-child(2), .propertyPage .container .flexPropertyPage .propertyPageImagesEven img:nth-child(2), .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img:nth-child(3), .propertyPage .container .flexPropertyPage .propertyPageImagesEven img:nth-child(3), .propertyPage .container .flexPropertyPage .propertyPageImagesEven img:nth-child(4), .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img:nth-child(4) {
    grid-column: initial;
  }
  .propertyPage .container .flexPropertyPage .propertyPageImagesOdd img:nth-child(2) {
    grid-column: 1/-1 !important;
  }
}

/* Grupo Dropdown Styles */
.grupo-dropdown-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.grupo-dropdown-btn:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.grupo-dropdown {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9AD8FF;
  z-index: 999999;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.grupo-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.grupo-dropdown-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 4.8rem;
  position: relative;
}

.grupo-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  display: none;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.grupo-close-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.grupo-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  text-align: left;
}

.grupo-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
}

.grupo-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.grupo-link:hover {
  color: #00275b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .grupo-dropdown {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
  }
  
  .grupo-dropdown-content {
    padding: 1rem;
    padding-top: 2rem;
    height: 100vh;
    justify-content: center;
    align-items: center;
  }
  
  .grupo-close-btn {
    display: block;
    top: 2rem;
    right: 2rem;
  }
  
  .grupo-dropdown-links {
    gap: 4rem;
    text-align: center;
  }
  
  .grupo-title,
  .grupo-link {
    font-size: 1.25rem;
  }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .grupo-dropdown {
    top: 60px;
  }
  
  .grupo-dropdown-content {
    padding: 1.5rem;
    padding-top: 5.5rem;
  }
  
  .grupo-dropdown-links {
    gap: 4rem;
  }
}