* {
  font-family: 'Rubik', sans-serif;
}

/* Start Header */
.header {
  height: 40vh;
  background: url('../images/pattern-bg.png');

  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.header_title {
  text-align: center;
  color: white;
}

.header_search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_search__input {
  height: 50px;
  width: 450px;

  border: none;
  border-radius: 10px 0px 0px 10px;
  padding-left: 15px;
  font-size: 18px;
}

.header_search__btn {
  height: 50px;
  width: 50px;
  background: #000;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0px 10px 10px 0px;
  transition: 0.2s;
}

.header_search__btn:active {
  background: gray;
}
/* End Header */

/* Start Infos */
.sectionInfos {
  width: 70%;
  margin: 0 auto;
  margin-top: 50px;
  z-index: 3;
}

.sectionInfos_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background-color: #fff;
  border-radius: 20px;
  height: 150px;
}
.sectionInfos_grid__box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sectionInfos_grid__box.before::before {
  content: ' ';
  position: absolute;
  width: 1px;
  right: 1px;
  height: 50px;
  background-color: hsl(0, 0%, 59%);
}

.sectionInfos_grid__box span {
  color: hsl(0, 0%, 59%);
  font-size: 12px;
}

.sectionInfos_grid__box p {
  font-size: 22px;
  font-weight: bold;
  max-width: 90%;
}
/* End Infos */

/* Start Map */
#mapid {
  z-index: 1;
  height: 100%;
  height: 75vh;
}
/* End Map */
