@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
div.popup-wrap {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

div.popup-wrap div.thank-you-popup {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

div.popup-wrap h2.popup-title {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 15px;
}

div.popup-wrap p.popup-descr {
  margin-bottom: 0;
  margin-top: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #6D8CA2;
}

html *,
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto", sans-serif, serif;
}

div.container {
  max-width: 1300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.container h2.property-title {
  margin-bottom: 57px;
}

div.container h2.financial-title {
  margin-bottom: 25px;
}

div.container h2.neighborhood-title {
  margin-bottom: 25px;
}

div.logo-wrap {
  background: #333333;
  text-align: center;
  padding: 25px 0;
}

h2.title {
  text-align: center;
  color: #555863;
  font-size: 26px;
}

h2.title:nth-child(2) {
  margin-bottom: 50px;
}

p {
  color: #99a9af;
}

form.main-form {
  width: 100%;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #fff;
  overflow: hidden;
  padding-bottom: 25px;
}

div.main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 25px;
}

div.main-content div.left,
div.main-content div.right {
  width: 49%;
}

div.inputs-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div.inputs-group div.inp-wrap,
div.inputs-group div.select-wrap {
  width: 49%;
}

div.inp-wrap,
div.select-wrap {
  margin-bottom: 15px;
}

div.select-wrap {
  position: relative;
}

div.select-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background: red;
  background: no-repeat center url("../img/down-arrow.png");
  background-size: contain;
  width: 15px;
  height: 15px;
  z-index: 100;
}

input.inp {
  font-size: 18px;
  padding: 10px 10px;
  border: 1px solid #6D8CA2;
  outline: none;
  width: 100%;
  border-radius: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input.inp:focus {
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

select.select {
  position: relative;
  font-size: 18px;
  padding: 10px 10px;
  border: 1px solid #6D8CA2;
  outline: none;
  width: 100%;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

input.inp.error,
select.select.error {
  border-color: #cf000f;
}

textarea.descr {
  width: 100%;
  border: 1px solid #6D8CA2;
  resize: none;
  border-radius: 3px;
  min-height: 180px;
  padding: 10px 15px;
  font-size: 18px;
  outline: none;
}

div.footer {
  padding: 0 25px;
}

div.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

div.btn-wrap button.btn {
  outline: none;
  border: none;
  border-radius: 3px;
  background: #67B7D1;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  padding: 13px 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0.2;
}

div.btn-wrap button.btn:hover {
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

div.btn-wrap button.btn.active {
  opacity: 1;
  cursor: pointer;
}

@media screen and (max-width: 920px) {
  form.main-form {
    width: 97%;
  }
}

@media screen and (max-width: 868px) {
  div.main-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  div.main-content div.left,
  div.main-content div.right {
    width: 100%;
  }
  div.main-content h2.property-title {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 568px) {
  form.main-form {
    margin: 15px 0;
    padding: 15px;
  }
  div.inputs-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  div.inputs-group div.inp-wrap,
  div.inputs-group div.select-wrap {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */