* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  height: 100vh;
}

main {
  background-image: url(./images/pattern-bg-desktop.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 280px;
  text-align: center;
}

.box {
  padding-top: 30px;
}
.box h1 {
  color: #fff;
}
.box .input {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.box .input input {
  padding: 9px 10px;
  width: 290px;
  outline: 0;
  border: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.box .input input::-moz-placeholder {
  color: hsl(0, 0%, 59%);
}
.box .input input::placeholder {
  color: hsl(0, 0%, 59%);
}
.box .input > div {
  background-color: hsl(0, 0%, 17%);
  width: 40px;
  display: grid;
  place-content: center;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  cursor: pointer;
}
.box .input > div img {
  width: 8px;
}

.data-box {
  background-color: #fff;
  position: relative;
  display: flex;
  width: 70%;
  justify-content: space-between;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  padding: 40px 20px;
  left: 50%;
  bottom: -80.5px;
  z-index: 100;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  text-align: left;
}
.data-box > div {
  width: 20%;
}
.data-box > div:not(:last-of-type) {
  position: relative;
}
.data-box > div:not(:last-of-type)::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: hsl(0, 0%, 59%);
  top: 0;
  right: 0px;
}
.data-box > div > div {
  font-size: 10px;
  color: hsl(0, 0%, 59%);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.data-box > div .data {
  color: hsl(0, 0%, 17%);
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 767px) {
  main {
    background-image: url(./images/pattern-bg-mobile.png);
  }
  .box {
    font-size: 14px;
  }
  .input {
    width: 80%;
    margin: auto;
  }
  .input input {
    width: calc(100% - 31px) !important;
    padding: 15px !important;
  }
  .data-box {
    flex-direction: column;
    gap: 20px;
    bottom: -20px;
  }
  .data-box > div {
    width: 100%;
    text-align: center;
  }
  .data-box > div:not(:last-of-type)::after {
    background-color: transparent;
  }
}
#map {
  height: calc(100vh - 280px);
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=main.css.map */