@charset "UTF-8";
.color--git-orange {
  color: #f05133;
}
.color--dark-orange {
  color: rgb(252, 44, 3);
}
.color--black {
  color: #000000;
}
.color--gray-1 {
  color: #383838;
}
.color--gray-2 {
  color: #4d4d4d;
}
.color--gray-3 {
  color: #6c6a6e;
}
.color--gray-4 {
  color: rgb(126, 126, 126);
}
.color--gray-5 {
  color: rgb(190, 190, 190);
}
.color--gray-6 {
  color: #f3f3f3;
}
.color--white {
  color: #ffffff;
}

.bgcolor--git-orange {
  background-color: #f05133;
}
.bgcolor--dark-orange {
  background-color: rgb(252, 44, 3);
}
.bgcolor--black {
  background-color: #000000;
}
.bgcolor--gray-1 {
  background-color: #383838;
}
.bgcolor--gray-2 {
  background-color: #4d4d4d;
}
.bgcolor--gray-3 {
  background-color: #6c6a6e;
}
.bgcolor--gray-4 {
  background-color: rgb(126, 126, 126);
}
.bgcolor--gray-5 {
  background-color: rgb(190, 190, 190);
}
.bgcolor--gray-6 {
  background-color: #f3f3f3;
}
.bgcolor--white {
  background-color: #ffffff;
}

code,
pre {
  font-family: "JetBrains Mono", monospace;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

a {
  color: rgb(126, 126, 126);
  text-decoration: none;
  transition: color 0.3s linear;
}
a:hover {
  color: #000000;
}

strong {
  font-weight: 500;
}

.body--extra-bold, .body--bold, .body--normal, .body--light, .body-italic--extra-bold, .body-italic--bold, .body-italic--normal, .body-italic--light {
  font-family: "franklin-gothic-urw", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75;
}

.body-italic--extra-bold, .body-italic--bold, .body-italic--normal, .body-italic--light {
  font-style: italic;
}

.heading-1,
.heading-2 {
  font-family: "alternate-gothic-no-3-d", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.heading-3,
.heading-4 {
  font-family: "franklin-gothic-urw", sans-serif;
  font-weight: 500;
}

.body--light {
  font-style: normal;
  font-weight: 300;
}

.body--normal {
  font-style: normal;
  font-weight: 400;
}

.body--bold {
  font-style: normal;
  font-weight: 500;
}

.body--extra-bold {
  font-style: normal;
  font-weight: 700;
}

.body-italic--light {
  font-weight: 300;
}

.body-italic--normal {
  font-weight: 400;
}

.body-italic--bold {
  font-weight: 500;
}

.body-italic--extra-bold {
  font-weight: 700;
}

.heading-1,
.heading-2 {
  line-height: 1.15;
}

.heading-1 {
  font-size: 3rem;
}

.heading-2 {
  font-size: 2.25rem;
}

.heading-3,
.heading-4 {
  line-height: 1.75;
}

.heading-3 {
  font-size: 1.5rem;
}

.breadcrumbs {
  font-family: "franklin-gothic-urw", sans-serif;
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: flex-start;
}
.breadcrumbs--link {
  display: inline-block;
}
.breadcrumbs--divider {
  align-items: center;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  padding: 0 0.5rem;
}
.breadcrumbs--terminal {
  color: rgb(190, 190, 190);
  display: inline-block;
}

.button__primary {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #000000;
  color: #000000;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 1;
  padding: 0.375rem 1rem 0.4375rem;
  text-align: center;
  transition: background-color 0.3s linear;
}
.button__primary:hover {
  background-color: #000000;
  color: #ffffff;
}
@media (min-width: 375px) {
  .button__primary {
    line-height: 1.5;
    padding: 0.4375rem 1.25rem 0.5rem;
  }
}

nav {
  background-color: #ffffff;
  position: relative;
  height: 100%;
  width: 100%;
}

#main-nav {
  background-color: #ffffff;
  box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.06);
  height: 5rem;
  position: fixed;
  width: 100%;
  z-index: 1030;
}
@media (min-width: 768px) {
  #main-nav {
    height: 5.625rem;
  }
}

.main-nav__contact-button {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #000000;
  color: #000000;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.375rem 1rem 0.4375rem;
  text-align: center;
}
@media (min-width: 375px) {
  .main-nav__contact-button {
    line-height: 1.5;
    padding: 0.4375rem 1.25rem 0.5rem;
  }
}

.contact-panel {
  background-color: #f3f3f3;
  display: block;
  height: 11.25rem;
  position: fixed;
  top: -6.25rem;
  transition: top 0.3s ease-in-out;
  width: 100%;
  z-index: 1029;
}
@media (min-width: 768px) {
  .contact-panel {
    height: 11.875rem;
  }
}
@media (min-width: 992px) {
  .contact-panel {
    display: none;
  }
}
.contact-panel--open {
  top: 0;
}
.contact-panel__close-button-wrapper {
  padding-top: 0.4375rem;
}
.contact-panel__close-button {
  border: 0;
  display: block;
  font-size: 2rem;
  padding: 0;
}
.contact-panel__top-padding {
  width: 100%;
  height: 5rem;
}
@media (min-width: 768px) {
  .contact-panel__top-padding {
    height: 5.625rem;
  }
}
.contact-panel__wrapper {
  height: 6.25rem;
}

.nav-header__head {
  font-family: "alternate-gothic-no-3-d", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.375rem;
  line-height: 1;
}
@media (min-width: 375px) {
  .nav-header__head {
    font-size: 1.875rem;
  }
}
.nav-header__subhead {
  font-size: 0.8125rem;
  line-height: 1.4;
}
@media (min-width: 375px) {
  .nav-header__subhead {
    font-size: 1.125rem;
  }
}
.nav-header__col-2, .nav-header__col-3 {
  padding-top: 0.1875rem;
}

footer {
  height: auto;
  padding: 0 0 1.25rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  footer {
    padding: 1.5rem 0 2rem;
  }
}

#footer-padding {
  display: block;
  height: 8rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  #footer-padding {
    height: 10.25rem;
  }
}

.footer--text {
  font-size: 0.8125rem;
  line-height: 1;
}
@media (min-width: 375px) {
  .footer--text {
    font-size: 1.125rem;
  }
}
.footer__align-with-logos {
  padding-top: 1.0625rem;
}
.footer__social-panel {
  background-color: #ffffff;
  display: inline-block;
  line-height: 0;
  padding: 0;
}
.footer__social-panel svg .paths-wrapper {
  fill: #000000;
  transition: fill 0.25s linear;
}
.footer__social-panel:hover svg .paths-wrapper {
  fill: rgb(126, 126, 126);
}
@media (min-width: 375px) {
  .footer__social-panel {
    padding: 0 0.125rem 0 0;
  }
}
.footer__social-panel.last {
  padding: 0;
}

body {
  font-family: "franklin-gothic-urw", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  color: #000000;
  line-height: 1.5;
}

hr {
  margin: 0;
  border-top: 0.25px solid #000000;
  opacity: 1;
}

img {
  border: 0;
}

section {
  position: relative;
  width: 100%;
}

#main-heading {
  padding-top: 5.625rem;
}
@media (min-width: 768px) {
  #main-heading {
    padding-top: 6.25rem;
  }
}

.no-nav {
  padding-top: 1rem;
}

#pdf-widget {
  background-color: #ffffff;
  border-top: 1px solid #000000;
  border-right: 0;
  border-bottom: 1px solid #000000;
  border-left: 1px solid #000000;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  height: auto;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 1rem;
  position: fixed;
  right: -7.125rem;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease-in-out, color 0.3s linear, background-color 0.3s linear, fill 0.3s linear, stroke 0.3s linear;
  width: 10rem;
  z-index: 1050;
}
#pdf-widget.pdf-widget--open {
  background-color: #000000;
  right: 0;
}
#pdf-widget.pdf-widget--open .document-icon .di--cls-1,
#pdf-widget.pdf-widget--open .document-icon .di--cls-2,
#pdf-widget.pdf-widget--open .document-icon .di--cls-3,
#pdf-widget.pdf-widget--open .document-icon .di--cls-4,
#pdf-widget.pdf-widget--open .document-icon .di--cls-5 {
  stroke: #ffffff;
}
#pdf-widget.pdf-widget--open .document-icon .di--cls-1,
#pdf-widget.pdf-widget--open .document-icon .di--cls-5 {
  fill: #000000;
}
#pdf-widget.pdf-widget--open .download-icon .dw--cls-1,
#pdf-widget.pdf-widget--open .download-icon .dw--cls-2 {
  stroke: #ffffff;
}
#pdf-widget.pdf-widget--open .pdf-widget__link {
  color: #ffffff;
}

.document-icon {
  display: inline-block;
  height: 22px;
  margin: 0 1rem 0 0;
  width: 16px;
}

.download-icon {
  display: inline-block;
  height: 18.5px;
  width: 18px;
}

.pdf-widget__link {
  color: #000000;
  display: inline-block;
  line-height: 1;
}
.pdf-widget__link .link-text {
  display: inline-block;
  margin-right: 0.5rem;
}

.project-row {
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .project-row {
    padding-bottom: 0.75rem;
  }
}

.thumbnail-column {
  padding-top: 1rem;
  padding-bottom: 0;
}

.project-thumbnail {
  display: inline-block;
  height: auto;
  margin: 0 0 1rem;
  width: 70%;
}
@media (min-width: 576px) {
  .project-thumbnail {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .project-thumbnail {
    width: 85%;
  }
}
@media (min-width: 1200px) {
  .project-thumbnail {
    width: 80%;
  }
}
@media (min-width: 1400px) {
  .project-thumbnail {
    width: 75%;
  }
}
.project-thumbnail.raster__ff-scales {
  padding-bottom: 0.5rem;
  width: 60%;
}
@media (min-width: 768px) {
  .project-thumbnail.raster__ff-scales {
    padding-bottom: 0.875rem;
    width: 70%;
  }
}

.thumb-container {
  background-color: #ffffff;
  border: 0.0625rem solid #000000;
  border-radius: 6.25rem;
  height: 12.5rem;
  margin: 0 0 1rem;
  overflow: hidden;
  position: relative;
  width: 12.5rem;
}

.project-description p {
  margin-bottom: 1rem;
}
.project-description p.last {
  margin-bottom: 1.25rem;
}
.project-description p.project-url {
  margin-bottom: 2.25rem;
}

.document-list {
  list-style-type: "–";
  -webkit-padding-start: 1ch;
          padding-inline-start: 1ch;
}