* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures the padding doesn't cause overflow */
}

html {
  line-height: 1.6rem;
  scroll-behavior: smooth;
}

body {
  color: #ffffff;
  background-color: #ffffff;
}

@font-face {
  font-family: "Avenir Black";
  src: url("../assets/fonts/AvenirLTStd-Black.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Roman";
  src: url("../assets/fonts/AvenirLTStd-Roman.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis Light";
  src: url("../assets/fonts/Metropolis-Light.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis Regular";
  src: url("../assets/fonts/Metropolis-Regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis Bold";
  src: url("../assets/fonts/Metropolis-Bold.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fade-in-div, .fade-in-div-header {
  opacity: 0;
}

.fade-in-div.fade-in, .fade-in-div-header {
  animation: fadeInAnimation 1s ease-in-out forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.bg-height {
  min-height: 260px;
  align-content: center;
}

.bg-img {
  background-image: url(../images/section-bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
}

.bg-img-light {
  background-image: url(../images/section-bg-light.svg);
  background-repeat: no-repeat;
  background-position: top right;
}

.bg-white {
  background-color: #ffffff;
  color: #D0C9BF;
}

.bg-white h1 {
  color: #D0C9BF;
}

.bg-primary {
  background-color: #D0C9BF;
}

.bg-dark {
  background-color: #3C3C3B;
}

.bg-gray {
  background-color: #639191;
}

.bg-plus {
  background-color: #9EAF99;
}

body {
  font-family: "Metropolis Regular", sans-serif;
  font-size: 1.25rem;
}

h1, h2, h3 {
  font-family: "Metropolis Bold", sans-serif;
  font-size: 3.31rem;
  color: #ffffff;
  line-height: 3.5rem;
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  font-family: "Metropolis Light", sans-serif;
  color: #3C3C3B;
}

li {
  list-style: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1, h2, h3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
/* 12-Column Grid System */
.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 60px 40px; /* Default gap between grid items */
  width: 100%;
  max-width: 1800px;
  margin: 0 auto; /* Center container */
  column-gap: 30px;
  row-gap: 50px;
  align-items: initial;
}

.row {
  row-gap: 60px;
}

/* Column Span Classes */
.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

.bottom-article {
  padding-bottom: 60px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container {
    grid-template-columns: repeat(6, 1fr); /* Adjust to 6 columns on smaller screens */
  }
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    width: 100%; /* Make each column take 100% width */
    grid-column: 1/-1; /* optional, ensures full width span, if you want to keep the grid */
  }
}
@media (max-width: 480px) {
  .container {
    grid-template-columns: 1fr; /* Use a single column grid on very small screens */
    padding: 40px 20px;
    row-gap: 30px;
  }
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    width: 100%; /* Make each column take 100% width */
    grid-column: 1/-1; /* optional, ensures full width span, if you want to keep the grid */
  }
}
header {
  grid-column: span 12;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  z-index: 1; /* Ensure the gradient is above the video/image but below the logo/contact button */
  pointer-events: none; /* Make the overlay non-interactive so clicks pass through */
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1; /* Place the video behind other content */
}

.logo {
  top: 50px;
  left: 10%;
  position: absolute;
  transform: translate(-50%);
  width: 120px;
  z-index: 2;
}

.whatsapp {
  position: absolute;
  bottom: 2vh;
  right: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  z-index: 1000;
}

.whatsapp.fixed {
  position: fixed; /* Change to fixed positioning when scrolled */
  top: 2vh;
}

.whatsapp:hover {
  color: #D0C9BF;
  animation: pulse 2s infinite; /* Apply the pulse animation */
}

.btn-contact {
  height: 140px;
  width: 45px;
  padding-left: 10px;
  background-color: #ffffff;
  writing-mode: sideways-lr;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  right: 0;
  top: 35vh;
  text-transform: uppercase;
  z-index: 3;
}

.btn-contact:hover {
  color: #ffffff;
  background: #3C3C3B;
}

.arrow {
  max-width: 40px; /* Set a maximum height for the logo */
  bottom: 5%;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .logo {
    left: 15%;
  }
}
@media (max-width: 768px) {
  header {
    height: 100vh;
  }
  .logo {
    width: 100px;
    left: 50%;
  }
  .btn-contact {
    height: 140px;
    width: 35px;
    top: 60vh;
    padding-left: 3px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
  }
  .whatsapp {
    top: 90vh;
    right: 0px;
    left: 20px;
    width: 45px;
  }
  .whatsapp.fixed {
    top: 5vh;
  }
}
main {
  grid-column: span 12;
}

.main-projects:hover {
  color: #D0C9BF;
  animation: pulse 2s infinite; /* Apply the pulse animation */
}

footer {
  background-color: #252423;
  font-size: 1rem;
  padding-top: 40px;
}

.logos-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; /* Distribute items evenly */
  padding-top: 45px;
  min-height: 130px;
  max-width: 850px;
}

.rol-footer {
  text-transform: uppercase;
  font-family: "Metropolis Regular", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1.7px;
  color: #D4CCC4;
  border-top: 1px solid #D4CCC4;
  margin-top: 40px;
  padding-top: 20px;
}

.btn-footer {
  background-color: #ffffff;
  color: #3C3C3B;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  display: block; /* Ensure button aligns as a block element */
  text-transform: uppercase;
  font-size: 1.4rem;
  width: 260px;
  margin: 60px auto;
}

.btn-footer:hover {
  background-color: #3C3C3B;
  color: #ffffff;
}

.disclaimer {
  font-family: "Metropolis Light", sans-serif;
  font-size: 1rem;
  color: #D4CCC4;
  text-transform: uppercase;
  text-align: center;
  padding-top: 100px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logos-footer {
    flex-direction: column; /* Stack logos */
    align-items: flex-start; /* Align logos to the left */
    justify-content: flex-start; /* align logos to the top */
    min-height: auto; /* Adjust height */
    padding-top: 15px;
  }
  .logos-footer img {
    max-width: 80%; /* Ensure logos fit */
    height: auto;
    margin: 40px 0; /* Add space between logos */
  }
  .developer-logos, .architect-logo {
    width: 100%; /* Full width on mobile */
    text-align: left; /* Align text to the left */
  }
  .rol-footer {
    margin-top: 0px;
  }
  .btn-footer {
    width: 65%;
    font-size: 1rem;
  }
  .disclaimer {
    padding-top: 50px;
    font-size: 0.6rem;
  }
}
@media (max-width: 480px) {
  .disclaimer {
    font-size: 0.5rem;
  }
}
.address {
  text-align: center;
  font-size: 1.375rem;
  text-transform: uppercase;
}

.button {
  background-color: #ffffff;
  color: #3C3C3B;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  display: block;
  text-transform: uppercase;
  font-size: 1.2rem;
  width: 360px;
  margin: 60px auto;
  display: inline-flex; /* Use inline-flex for better alignment */
  align-items: center; /* Center the icon vertically */
  justify-content: space-between; /* Distribute space between text and icon */
}

.download-icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

button:hover {
  background-color: #3C3C3B;
  color: #ffffff;
}

.hidden {
  display: none;
}

.section-logo {
  height: 80px;
}

.section-padding-top {
  padding-top: 100px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-logo {
    height: 60px;
  }
  .button {
    width: 100%;
    margin: 0px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .address {
    text-align: left;
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .section-logo {
    height: 40px;
  }
  .section-padding-top {
    padding-top: 40px;
  }
}

.project-container {
  position: relative; /* Stacking context for logo */
  display: block;
}

.image-container {
  position: relative; /* Stacking context for overlay */
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 480px;
  background-color: black;
  opacity: 0.4; /* Adjust as needed */
  z-index: 10; /* Above the image */
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20; /* Above the overlay */
  display: flex; /* Add flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.svg-logo {
  width: 100%; /* Adjust size */
  height: auto;
  display: block;
}


.two-col-caption {
  font-family: "Metropolis Bold", sans-serif;
  color: #3C3C3B;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

.two-col-img {
  width: 100%;
  max-width: 900px;
  height: 480px;
  object-fit: cover;
}

.two-col-title {
  text-transform: uppercase;
  font-size: 1.5rem;
}

.two-col-subtitle {
  color: #716A5C;
  font-size: 1.2rem;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .two-col-img {
    max-width: 450px;
    height: 330px;
  }
}
@media (max-width: 480px) {
  .two-col-caption {
    padding-top: 15px;
  }
  .two-col-img, .black-overlay {
    max-width: 450px;
    height: 330px;
  }
  .two-col-title {
    font-size: 1.2rem;
    line-height: 0.7;
  }
  .two-col-subtitle {
    font-size: 1rem;
  }
}
#map {
  height: 500px;
}

.leaflet-tile-pane {
  filter: grayscale(100%); /* Apply grayscale filter */
}

.map-copy-small {
  font-size: 1.3rem;
  text-align: left;
  line-height: 1.3;
}

.map-copy-large {
  font-family: "Metropolis Bold", sans-serif;
  font-size: 2.3rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.vertical-middle {
  display: flex;
  align-items: center;
}

.right-align {
  display: flex;
  justify-content: flex-end;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .right-align {
    display: inline;
  }
}
@media (max-width: 480px) {
  .map-copy-small {
    font-size: 1rem;
  }
  .map-copy-large {
    font-size: 1.3rem;
    line-height: 1.3;
  }
}
.swiper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* Ensures caption is below */
  width: 80%;
  height: 100%;
  overflow: hidden; /* Prevents unwanted expansion */
}

.swiper-slide img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  position: relative;
  top: 0;
  left: 0;
}

.caption {
  position: relative;
  width: 100%;
  padding: 10px 50px;
  color: #ffffff;
  text-align: left;
  font-size: 1rem;
}

/* Adjust widths for different slides */
.swiper-slide {
  width: 80%;
}

.swiper-slide:nth-child(2n) {
  width: 70%;
}

.swiper-slide:nth-child(3n) {
  width: 60%; /* Increased from 30% to prevent extreme shrinking */
}

/* Swiper Navigation */
.swiper-button-prev, .swiper-button-next {
  color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .swiper-slide {
    width: 100% !important; /* Override inline styles and other rules */
    justify-content: flex-start; /* Aligns content to the top */
  }
  .swiper-slide img {
    height: 440px;
    object-fit: cover;
  }
  .caption {
    padding: 10px 20px; /* Adjust padding for mobile */
  }
  .swiper-button-prev, .swiper-button-next {
    top: 90%; /* Adjust position to be at the bottom */
    transform: translateY(-90%);
  }
  .swiper-button-prev,
  .swiper-button-next {
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Center vertically */
    width: 30px; /* Adjust width as needed */
    height: 30px; /* Adjust height as needed */
    font-size: 0.4rem;
  }
}

/*# sourceMappingURL=styles.css.map */
