@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

#container {
  margin-top: 128px;
  height: 40vh;
  background: url("../img/contact/map-image.PNG") no-repeat center center;
  background-size: cover;
}

#container .wrapper {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  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;
  font-family: 'Roboto';
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

#container .wrapper .title {
  margin: 10px 0;
  font-size: 45px;
  font-weight: 300;
}

#container .wrapper .subtitle {
  font-weight: 300;
  font-size: 25px;
}

#container .wrapper .svg_wrapper {
  height: 40px;
  width: 40px;
  background: #fff;
  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;
  padding: 10px;
  border-radius: 100px;
  position: absolute;
  bottom: -20px;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

#container .wrapper .svg_wrapper img {
  width: 90%;
}

#contact {
  min-height: 80vh;
  margin-top: 10vh;
  font-family: 'Roboto';
}

#contact .title {
  text-align: center;
  font-weight: 300;
  color: #2b2b2b;
  font-size: 40px;
}

#contact .c-form {
  padding: 20px 80px 50px 80px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#contact .c-form .c-input {
  width: 21%;
  text-align: center;
  margin: 50px 10px;
  position: relative;
}

#contact .c-form .c-input label {
  position: absolute;
}

#contact .c-form .c-input input {
  width: 100%;
  height: 50px;
  padding: 20px;
  font-family: 'Roboto';
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 300;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

#contact .c-form .c-message {
  width: 90%;
  text-align: center;
}

#contact .c-form .c-message textarea {
  width: 100%;
  height: 200px;
  padding: 20px;
  font-family: 'Roboto';
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 300;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

#contact .c-form .btn {
  width: 100px;
  margin: 25px 100px;
  padding: 10px;
  border: none;
  background: #4285f4;
  color: #fff;
  font-family: 'Roboto';
  font-size: 20px;
  border-radius: 5px;
}

#map_wrapper {
  height: 400px;
}

#map_wrapper #map {
  width: 400px;
  height: 100%;
  margin: 0 auto;
  border-radius: 5px;
}

@media (max-width: 720px) {
  #container {
    margin-top: 0;
  }
  #container .wrapper {
    padding: 0 10px;
  }
  #container .title {
    font-size: 23px !important;
    text-align: center;
  }
  #container .subtitle {
    font-size: 18px !important;
  }
  #contact {
    height: auto !important;
  }
  #contact .c-form {
    padding: 30px 10px;
  }
  #contact .c-form .c-input {
    width: 100%;
    margin: 10px;
  }
  #contact .c-form .c-input input {
    font-size: 18px !important;
  }
  #contact .c-form .c-message {
    width: 95%;
    margin-bottom: 10px;
  }
  #contact .c-form .c-message textarea {
    font-size: 18px !important;
  }
  #map {
    width: 100% !important;
    border-radius: 0 !important;
  }
}
/*# sourceMappingURL=contactus.css.map */