.psService * {
  box-sizing: border-box;
}
.psService {
  max-width: 1125px;
  margin: 0 auto;
}
.halfColLeft {
  float: left;
  width: 50%;
  padding-right: 1rem;
  border-right: 1px solid var(--rule-line-color);
}
.halfColRight {
  float: right;
  width: 50%;
  padding-left: 1rem;
  border-left: none;
}
.psService textarea {
  border-radius: 6px;
  border: 1px solid var(--input-border-color);
  appearance: none;
  background: #FFF;
  width: 100%;
  padding: .625rem;
  font-family: inherit;
  color: var(--body-txt-color);
}
.psService .inlineBlock:first-child {
  margin-right: 1rem;
}
.psService .addrLine:first-of-type .inlineBlock:first-child {
  margin-bottom: .625rem;
}
#state {
  margin-bottom: .625rem;
}
.ftrButtons {
  padding-bottom: 2rem;
}
.psService input[type="text"], .psService input[type="number"], .psService input[type="email"] {
  margin-right: 0;
}
.halfColRight .smallHead {
  font-size: .875rem;
}
.halfColRight .smallHead::after {
  content: ' *';
  color: var(--error-color);
}
@media only screen and (max-width: 500px) {
  .psService h1 {
    font-size: 1.5rem;
  }
  .psIntro {
    font-size: .875rem;
  }
  .psIntro h2 {
    font-size: 1rem;
  }
  .halfColLeft, .halfColRight {
    float: none;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    border-right: none;
    border-left: none;
  }
}