*,
*::before,
*::after {
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  height: 100%;
}

@media screen and (max-width: 870px) {
  html {
    font-size: 50%;
  }
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Rubik";
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-image: url("../../images/pattern-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.header__heading {
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-size: 4rem;
  color: #fff;
  margin-top: 5rem;
}

.header__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5rem;
  margin-bottom: 20rem;
}

.header__input--input {
  font-family: inherit;
  font-size: 1.8rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px 0px 0px 5px;
  width: 45rem;
}

.header__input--input:focus {
  outline: none;
}

.header__input--input::-webkit-input-placeholder {
  color: #969696;
}

.header__input--input:-ms-input-placeholder {
  color: #969696;
}

.header__input--input::-ms-input-placeholder {
  color: #969696;
}

.header__input--input::placeholder {
  color: #969696;
}

.header__input--btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2b2b2b;
  border: none;
  border-radius: 0px 5px 5px 0px;
  padding: 2rem;
  cursor: pointer;
}

.header__input--btn:focus {
  outline: none;
}

.panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  position: absolute;
  width: 75vw;
  border-radius: 15px;
  padding: 3rem;
  bottom: -30%;
}

@media screen and (max-width: 1050px) {
  .panel {
    bottom: -50%;
  }
}

@media screen and (max-width: 870px) {
  .panel {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: -80%;
  }
}

@media screen and (max-width: 570px) {
  .panel {
    bottom: -90%;
  }
}

.panel__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.panel__box:not(:last-child) {
  border-right: 1px solid rgba(150, 150, 150, 0.6);
}

@media screen and (max-width: 870px) {
  .panel__box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .panel__box:not(:last-child) {
    border-right: none;
  }
}

.panel__box--label {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #969696;
}

.panel__box--info {
  margin-top: 1.2rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: #2b2b2b;
}

#map {
  height: 100rem;
  z-index: -1;
}
/*# sourceMappingURL=main.css.map */