body {
  background-color: rgb(17, 22, 22);
}

.resort {
  padding: 120px 25px;
}
.resort h1 {
  font-size: 75px;
  font-weight: 700;
  color: #fff;
}
.resort-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* grid-template-areas: ""; */
  min-height: 100svh;
  padding: 10px;
  gap: 10px;
  /* background-color: rgb(15, 31, 31); */
  /* background-color: rgb(234, 255, 255); */
  /* background-image: url("/assets/images/pattern.jpg"); */
}
.resort-grid img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.resort-grid-col-1,
.resort-grid-col-3 {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.resort-grid-col-2 {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}


.country-yard {
  padding: 40px 25px 120px;
}
.country-yard h1 {
  font-size: 75px;
  font-weight: 700;
  color: #fff;
}
.country-yard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* grid-template-areas: ""; */
  min-height: 100svh;
  padding: 10px;
  gap: 10px;
  /* background-color: rgb(15, 31, 31); */
  /* background-color: rgb(234, 255, 255); */
  /* background-image: url("/assets/images/pattern.jpg"); */
}
.country-yard-grid img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.country-yard-grid-col-1,
.country-yard-grid-col-3 {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.country-yard-grid-col-2 {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {
}

@media screen and (max-width: 768px) {
  .resort-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .resort-grid-col-3 {
    grid-template-rows: 0.7fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: span 2 / span 2;
  }
  .country-yard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .country-yard-grid-col-3 {
    grid-template-rows: 0.7fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: span 2 / span 2;
  }
}

