.form-control label {
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  position: relative;
  display: block;
  padding-left: 28px;
  margin-right: 15px;
  font-size: 14px;
  font-style: italic;
  color: #737c85;
  cursor: pointer;
}
.radio {
  margin-top: 23px;
}
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio] + label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  position: absolute;
  left: 1px;
  bottom: 3px;
  border: 1px solid #dfe6e7;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.radio input[type=radio]:checked + label:before {
  content: "";
  background-image: url("../img/radio-check.svg");
  background-size: 54px 14px;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  top: 4px;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 3px;
  border: 1px solid #dfe6e7;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.checkbox input[type=checkbox]:checked + label:before {
  content: "";
  background-image: url("../img/radio-check.svg");
  background-size: 54px 14px;
  background-position: -13px 50%;
  background-repeat: no-repeat;
}
.radio--dark input[type=radio] + label:before {
  border: none;
  background-color: #34495e;
}
.radio--dark input[type=radio]:checked + label:before {
  background-position: -28px 50%;
}
.checkbox--dark input[type=checkbox] + label:before {
  border: none;
  background-color: #34495e;
}
.checkbox--dark input[type=checkbox]:checked + label:before {
  background-position: -39px 50%;
}

#content.contact-page h2 {
    margin: 0 0 0.625em;
}