/* Header */

section#header {
  width: 100%;
  position: relative;
  background-color: var(--color-white);
  padding: 100px 0;
}

section#header .wrapper {
  background: url("../src/images/bg.png") no-repeat center top;
  background-size: 1200px auto;
}

section#header .grid {
  display: grid;
  grid: 1fr /4fr 3fr;
  gap: 30px;
}

section#header .block-screen {
  margin-top: 50px;
  text-align: center;
}

section#header .block-screen img {
  box-shadow: 0px 15px 41px 9px rgba(0, 0, 0, 0.06);
}

#header .card h3 {
  margin: 0;
}

@media (max-width: 1200px) {
  section#header .grid {
    grid: 1fr /1fr 1fr;
  }
}

@media (max-width: 1200px) {
  section#header .grid {
    grid: 1fr / 1fr;
  }

  #header .intro {
    text-align: center;
  }

  #header img {
    max-height: 270px;
  }
}

/* Map */

#map {
  margin-top: 200px;
}

#map .container {
  margin-top: -330px;
}

#map .map {
  box-shadow: 0px 15px 41px 9px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

#map .map-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

#map .heading {
  margin-left: 0;
}
