.jost-font {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.crimson-text {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  margin-top: 9rem;
  margin-bottom: 4rem;
  text-align: center;
}

p {
  font-size: 1.1rem;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

.intro-text {
  margin: auto;
  max-width: 50vw;
  text-align: center;
  line-height: 2rem;
  padding-bottom: 3rem;
}

.img-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #c1b49b;
  padding: 3rem 0;
}

.main-img {
  background-color: white;
  width: 1000px;
  height: 400px;
}
.main-img img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-info {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 900px;
  justify-content: space-between;
  padding-top: 2rem;
  text-align: center;
}

.info-name {
  text-transform: uppercase;
  padding-bottom: 0.3rem;
}

.info-value {
  font-size: 2.75rem;
  font-weight: bold;
}

.property-price {
  background-color: #6c5b3a;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  color: white;
}

.property-description {
  text-align: center;
  width: 50vw;
  padding: 2rem 0;
}
.property-description p {
  margin: 1rem 0;
  line-height: 1.3rem;
}

.property-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  width: 80%;
  max-width: 1920px;
  gap: 1rem;
  align-items: center;
  padding: 3rem 0;
  justify-content: center;
}
.property-gallery img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1280px) {
  .property-gallery {
    grid-template-columns: repeat(2, 1fr);
    width: 95%;
  }
  .property-description {
    width: 95%;
  }
  .main-img {
    width: 90%;
    height: 400px;
  }
}
@media only screen and (max-width: 1024px) {
  .main-info {
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media only screen and (max-width: 675px) {
  .property-gallery {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=property.css.map */