@import url("https://use.typekit.net/xyn3ecx.css");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700;800;900&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat+Subrayada&family=Nokora:wght@100;300;400;700;900&family=PT+Sans+Narrow:wght@400;700&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,400&display=swap");
/* font-family: haboro-contrast-normal, sans-serif;
font-family: 'Cinzel', serif;
font-family: 'Cinzel Decorative', cursive;
font-family: 'Lobster Two', cursive;
font-family: 'Nokora', sans-serif;
font-family: 'PT Sans Narrow', sans-serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Montserrat Subrayada', sans-serif; */
.main-navigation ul li:nth-of-type(4) a {
  font-weight: 700;
  color: rgb(141, 35, 35);
}

.places-main {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
  padding-top: 80px;
  padding-bottom: 4rem;
}

.hero-image {
  width: 100%;
  height: 20vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center 45%;
     object-position: center 45%;
  opacity: 0.95;
}

.places-posts {
  padding: 2rem auto;
  width: 1440px;
  height: calc(100vh - 80px);
  display: grid;
  grid-template-rows: 10% 65% 25%;
}
.places-posts .places-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  border-radius: 20px;
}
.places-posts .places-header h1 {
  font-size: 3rem;
  font-family: "Cinzel Decorative", cursive;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 1.2rem;
}
.places-posts .places-cont {
  width: 1440px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  grid-template-rows: repeat(3, 25vh);
  gap: 2rem;
  padding: 3rem 0;
}
.places-posts .places-cont a {
  text-decoration: none;
  cursor: pointer;
}
.places-posts .places-cont .places {
  background-color: #fff;
  color: black;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-rows: 20% 80%;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  height: 100%;
  opacity: 0;
  transform: translateY(15%);
}
.places-posts .places-cont .places .places-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 0.5rem;
}
.places-posts .places-cont .places .places-text h2 {
  font-size: 2rem;
  font-family: "Cinzel Decorative", cursive;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
}
.places-posts .places-cont .places .places-text h3 {
  font-size: 1.25rem;
  font-family: "Cinzel Decorative", cursive;
  font-weight: 600;
  text-transform: uppercase;
}
.places-posts .places-cont .places .image-cont {
  width: 100%;
  height: 100%;
  padding-bottom: 0.5rem;
}
.places-posts .places-cont .places .image-cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.places-posts .places-cont .places .trip-summary {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: justify;
}
.places-posts .places-cont .places .trip-summary p {
  font-size: 1.25rem;
  font-family: "Nokora", sans-serif;
  text-transform: capitalize;
  padding: 0.5rem;
}
.places-posts .places-cont .places .trip-summary p a {
  text-decoration: none;
  font-size: 1.2rem;
  color: blue;
}
.places-posts .places-cont .places:hover {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3), 8px -16px 18px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.svg-cont {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svg-cont svg {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=places.css.map */