:root {
  --page-bg: #eeeeee;
  --panel-bg: #ffffff;
  --text: #202133;
  --muted: #5d6072;
  --line: #d9d9d9;
  --nav-active: #eeeeee;
  --content-width: 900px;
  --gutter: 40px;
  --container-width: calc(var(--content-width) + (var(--gutter) * 2));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  background: #ffffff;
}

.container {
  width: min(var(--container-width), 100%);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.topbar__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 110px;
}

.brand {
  padding-top: 27px;
}

.brand__name {
  display: block;
  color: #000000;
  font-size: 49px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand__tagline {
  display: block;
  margin-top: 6px;
  color: #000000;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: flex-end;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 0 16px;
  border-radius: 4px;
  color: #000000;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav a[aria-current="page"] {
  background: var(--nav-active);
  color: #5a5b6c;
}

.page-panel {
  width: min(var(--container-width), 100%);
  margin: 0 auto;
  padding: 16px var(--gutter) 20px;
  background: var(--panel-bg);
  border: 1px solid transparent;
  border-top: 0;
  border-bottom: 0;
  background-clip: padding-box;
}

.hero {
  position: relative;
  height: 298px;
  margin-bottom: 53px;
  overflow: hidden;
  background: url("../images/pccm-banner.jpg") left center / cover no-repeat;
}

.breadcrumb {
  margin: 0 0 34px;
  color: #242638;
  font-size: 11px;
}

.breadcrumb a {
  color: #4f55a0;
}

.content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 0;
}

.intro {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}

.content h1,
.content h2 {
  margin: 27px 0 9px;
  color: #242638;
  font-size: 22px;
  line-height: 1.25;
}

.content h1 {
  font-weight: 400;
  text-transform: uppercase;
}

.content h2 {
  font-weight: 700;
}

.content p {
  margin: 0 0 14px;
}

.service-title {
  margin: 14px 0 7px;
  font-style: italic;
  text-transform: uppercase;
}

.content ul {
  margin: 0 0 16px 25px;
  padding: 0;
}

.content li {
  margin: 1px 0;
}

.site-footer {
  width: min(var(--container-width), 100%);
  margin: 0 auto;
  padding: 35px var(--gutter) 18px;
  background: #ffffff;
}

.site-footer__line {
  border-top: 1px dotted #9a9a9a;
}

.site-footer p {
  margin: 31px 0 0;
  color: #202133;
  font-size: 12px;
  text-align: center;
}

.contact-section {
  padding-bottom: 20px;
}

.contact-subtitle {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 400;
}

.email-heading {
  margin: 16px 0 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: #333333;
  font-size: 20px;
  font-weight: 400;
}

.contact-form {
  max-width: 500px;
  margin-left: 0;
  text-align: left;
}

.required-note {
  margin: 0 0 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  align-items: start;
  justify-items: start;
  margin-bottom: 15px;
}

.form-row label {
  padding-top: 6px;
  text-align: left;
}

.form-control {
  width: 304px;
  min-height: 28px;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
  background: #ffffff;
  font: inherit;
}

textarea.form-control {
  width: 304px;
  height: 190px;
  resize: vertical;
}

.checkbox-row {
  align-items: center;
}

.checkbox-row label {
  padding-top: 0;
}

.captcha-line {
  padding-top: 6px;
}

.button-row {
  margin-left: 0;
}

.submit-button {
  min-width: 60px;
  min-height: 29px;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  background: linear-gradient(#ffffff, #e6e6e6);
  color: #222222;
  font: inherit;
  cursor: default;
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  .topbar__inner {
    position: relative;
    min-height: 96px;
    align-items: flex-start;
  }

  .brand {
    padding-top: 24px;
  }

  .brand__name {
    font-size: 40px;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-end;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 84px;
    right: var(--gutter);
    z-index: 5;
    display: none;
    width: calc(100% - (var(--gutter) * 2));
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    background: #ffffff;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    height: 210px;
  }

  .content {
    padding-left: 0;
  }

  .intro {
    font-size: 19px;
  }

  .contact-form {
    max-width: none;
    margin-left: 0;
  }

  .form-control,
  textarea.form-control {
    width: 100%;
  }

  .button-row {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 16px;
  }

  body {
    font-size: 13px;
  }

  .brand__name {
    font-size: 34px;
  }

  .brand__tagline {
    font-size: 10px;
  }

  .hero {
    height: 170px;
  }

  .content h1,
  .content h2 {
    font-size: 20px;
  }
}
