/*================================= hero img =======================================*/

.Hero {
  width: 100%;
  height: 15rem;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./../../assets/hero-img.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: unset;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  z-index: -1;
}

.Hero .Column_Anchor {
  font-size: 1.5rem;
  color: var(--light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*================================= location =======================================*/

.ListCol-location {
  width: 100%;
  background: var(--light);
}

/*================================= main content =======================================*/

.Listcol-main-content {
  padding: 2rem;
  width: 100%;
  gap: 1rem;
  display: grid;
  grid-template-columns: 1fr 3.8fr;
  grid-template-rows: 1fr;

  background-image: linear-gradient(
      to left,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url("http://img.gr512.com/KEImage/jpg/20181108094726_7818.jpg");
  background-position: center;
  background-repeat: unset;
  background-attachment: fixed;
  background-size: cover;
}

.Listcol-main-content--1 {
  grid-row: 1/2;
  grid-column: 1/2;
  border-radius: 5px;
}
.Listcol-main-content--2 {
  grid-row: 1/2;
  grid-column: 2/3;
  border-radius: 10px;
  background: var(--light);
  padding: 1.5rem;
}
