/* New Form */
@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400);
#page-wrapper > section {
  padding-top: 5rem;
  background-color: #ffffff;
}

#sectionLocation h4, #sectionLocation h2 {
  font-family: "Lato", sans-serif;
  color: white;
  font-weight: 400;
}

i {
  margin-right: 1em;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #696969;
  font-size: 0.875em;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #1f1d1c;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #696969;
  font-size: 0.875em;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #1f1d1c;
}

input::placeholder, textarea::placeholder {
  color: #696969;
  font-size: 0.875em;
}

input:focus::placeholder, textarea::focus:placeholder {
  color: #1f1d1c;
}

input::-ms-placeholder, textarea::-ms-placeholder {
  color: #696969;
  font-size: 0.875em;
}

input:focus::-ms-placeholder, textarea:focus::-ms-placeholder {
  color: #1f1d1c;
}

/* on hover placeholder */
input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  color: #1f1d1c;
  font-size: 0.875em;
}

input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder {
  color: #1f1d1c;
}

input:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
  color: #1f1d1c;
  font-size: 0.875em;
}

input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder {
  color: #1f1d1c;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #1f1d1c;
  font-size: 0.875em;
}

input:hover:focus::placeholder, textarea:hover:focus::placeholder {
  color: #1f1d1c;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #1f1d1c;
  font-size: 0.875em;
}

input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder {
  color: #1f1d1c;
}

body #regForm {
  font-family: "Lato", sans-serif;
  color: #181615;
  font-size: normal;
  line-height: normal;
  box-sizing: content-box;
}

* #regForm {
  box-sizing: content-box;
}

#formHeader {
  position: relative;
  margin: 100px 0 25px 0;
  font-size: 2.3em;
  text-align: center;
  letter-spacing: 7px;
}

#regForm {
  position: relative;
  width: 470px;
  margin: 50px auto 100px auto;
}

#regForm > p {
  padding-bottom: 5rem;
}

input {
  font-family: "Lato", sans-serif;
  font-size: 0.875em;
  width: 470px;
  height: 50px;
  padding: 0px 15px 0px 15px;
  line-height: normal;
  background: transparent;
  outline: none;
  color: #1f1d1c;
  border: solid 1px rgba(153, 153, 153, 0.4196078431);
  border-bottom: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.form-select {
  font-family: "Lato", sans-serif;
  font-size: 0.875em;
  color: #696969;
  margin: 5px 0 3px 0;
  border: solid 1px rgba(153, 153, 153, 0.4196078431);
  border-radius: 0;
}

input:hover {
  background: rgba(153, 153, 153, 0.4196078431);
  color: #1f1d1c;
}

#name {
  margin-top: -3px;
  border-top: none;
}

textarea {
  width: 100%;
  max-width: 100%;
  height: 110px;
  max-height: 110px;
  padding: 15px;
  line-height: normal;
  background: transparent;
  outline: none;
  color: #1f1d1c;
  font-family: "Lato", sans-serif;
  font-size: 0.875em;
  border: solid 1px rgba(153, 153, 153, 0.4196078431);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

textarea:hover {
  background: rgba(153, 153, 153, 0.4196078431);
  color: #1f1d1c;
}

#submit {
  padding: 0;
  margin: -5px 0px 0px 0px;
  font-family: "Lato", sans-serif;
  font-size: 0.875em;
  color: #696969;
  line-height: normal;
  outline: none;
  cursor: pointer;
  border: solid 1px rgba(153, 153, 153, 0.4196078431);
  border-top: none;
}

#submit:hover {
  color: #1f1d1c;
}

#sectionLocation {
  background-color: #1f1d1c;
  padding-top: 2rem;
}

.select {
  position: relative;
  overflow: hidden;
  display: block;
  margin: auto;
  height: 80%;
  border: solid 1px rgba(153, 153, 153, 0.4196078431);
  font-size: 12px;
}
.select > i.toggle {
  position: absolute;
  z-index: 4;
  right: 1.5em;
  top: 1.6em;
  color: #ccc;
}
.select .title,
.select .placeholder {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5em 1em;
  background: rgb(255, 255, 255);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.select > input {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  width: 100%;
  height: 80%;
  display: block;
  opacity: 0;
  cursor: pointer;
}
.select > input:checked ~ i.toggle.icon-arrow-down {
  display: none;
}
.select > input:checked ~ i.toggle.icon-arrow-up {
  display: block;
}
.select > input:checked div.options label.option .title {
  display: none !important;
}
.select > input:not(:checked) {
  z-index: 4;
}
.select > input:not(:checked) ~ label.option > span.title {
  display: none;
}
.select > input:not(:checked) ~ i.toggle.icon-arrow-up {
  display: none;
}
.select > input:not(:checked) ~ i.toggle.icon-arrow-down {
  display: block;
}
.select > input:disabled {
  cursor: no-drop;
}
.select > span.placeholder {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 100%;
  color: #999;
  border-top: 0px;
}
.select label.option {
  display: block;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  transition: all 1s ease-out;
}
.select label.option span.title {
  position: relative;
  z-index: 2;
  transition: background 0.3s ease-out;
}
.select label.option span.title i.icon {
  padding-right: 8px;
  color: rgb(146, 168, 209);
}
.select label.option span.title:hover {
  color: #1f1d1c;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 0.1);
}
.select label.option input {
  display: none;
}
.select label.option input:checked ~ span.title {
  position: absolute;
  display: block;
  z-index: 3;
  top: 0px;
  font-size: 12px;
  background: #fff;
  border-top: 0px;
  box-shadow: none;
  color: inherit;
  width: 100%;
}
.select label.option input:disabled ~ span.title {
  background: #f9f9f9 !important;
  color: #aaa;
}
.select label.option input:disabled ~ span.title:hover {
  color: #aaa;
  background: none;
  cursor: no-drop;
}

@media screen and (max-width:520px) {
  #regForm {
    width: 350px;
  }

  input {
    width: 350px;
  }

  textarea {
    max-width: 350px;
    width:350px;
  }
}

/*# sourceMappingURL=contact.css.map */
