@import url("fonts.b6f023dd43be.css");
@import url("normalize.a2444750a947.css");

:root {
  --color-ta-blue: rgb(64,105,115);
  --color-ta-blue-90: rgba(64,105,115,0.9);
  --color-ta-blue-50-tint: rgb(160,180,185);
  --color-ta-orange: rgb(223,90,33);
  --color-ta-orange-10-tint: rgb(252,239,233);
  --color-ta-orange-50-tint: rgb(239,173,144);
  --color-ta-orange-60-tint: rgb(236,156,122);
  --color-ta-brown: rgb(179,71,71); /* adjust tints */
  --color-ta-brown-10-tint: rgb(247,237,237);
  --color-ta-brown-50-tint: rgb(217,163,163);
  --color-ta-brown-60-tint: rgb(209,145,145);
  --color-ta-black: rgba(0,0,0,0.9);
  --color-ta-white: rgba(255,255,255,0.95);
  --color-ta-nearlyblack: rgb(38,44,48,1);
  --color-ta-teal: rgb(0,140,135);
  --color-ta-teal-10-tint: rgb(230,244,243);
  --color-ta-teal-50-tint: rgb(128,198,195);
  --content-margin: 5.8rem;
  --content-margin-small: 4.8rem;
  --content-margin-large: 7rem;
  --font-size-0: 0.6rem;
  --font-size-1: 0.75rem;
  --font-size-2: 2rem;
  --font-size-3: 1.5rem;
  --font-size-4: 1.15rem;
  --font-size-5: 1rem;
  --font-size-6: 0.5rem;
  --letter-spacing-1: 0.05em;
  --letter-spacing-2: 0.08em;
  --content-width: 1500px;
  --header-height: 2.5rem;
}

.turbolinks-progress-bar {
  background-color: var(--color-ta-orange);
}

html {
  font-size: 27px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: grid;
  font-family: Calibre-normal;
  color: var(--color-ta-black);
  margin-top: var(--header-height);
}

main,
.header,
.footer {
  width: 100%;
}

main {
  margin: 0 auto;
}

main article > section {
  max-width: var(--content-width);
  margin: 0 auto;
}

main article > section.hero {
  width: 100%;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

b, strong {
  font-weight: 400;
  font-family: Calibre-bold;
}

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

a:focus {
  outline: none;
}

p a {
  border-bottom: 2px solid var(--color-ta-teal-50-tint);
  transition: background-size .4s ease;
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg,transparent 65%,var(--color-ta-teal-50-tint) 0);
}

p a:hover,
p a:focus {
  background-size: 100% 100%;
}

p {
  margin-bottom: 0;
  margin-top: 1.5em;
  font-size: var(--font-size-1);
  line-height: 1.5;
}

ul {
  margin-top: 1.5em;
  margin-bottom: 0;
}

li {
  margin-bottom: 0;
  font-size: var(--font-size-1);
  line-height: 1rem;
}

h1 {
  font-size: var(--font-size-2);
}

h2 {
  font-size: var(--font-size-3);
}

h3 {
  font-size: var(--font-size-4);
}

h4 {
  font-size: var(--font-size-5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.5em;
  margin-bottom: 0;
  font-weight: 400;
  font-family: Calibre-bold;
}

.responsive-object {
  position: relative;
}

.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: rgba(255,255,255,1);
  position: fixed;
  z-index: 10;
  height: var(--header-height);
  align-items: center;
  top: 0;
}

.header-image {
  width: 150px;
}

@media screen and (min-width: 1500px) {
  .header {
    padding: 0 calc(((100vw - var(--content-width)) / 2) + 1rem);
  }
}

.header-menu.mobile {
  display: none;
}

.header .menu-button {
  display: none;
}

.header-menu {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: var(--font-size-0);
}

.menu-item {
  margin-left: 1rem;
}

.menu-item a {
  color: var(--color-ta-blue);
  font-family: Calibre-bold;
  letter-spacing: var(--letter-spacing-2);
}

.menu-item a {
  padding-bottom: 5px;
  transition: background-size .4s ease;
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg,transparent 86%,var(--color-ta-blue-90) 0);
}

.mobile .menu-item a {
  background-image: linear-gradient(180deg,transparent 89%,var(--color-ta-blue-90) 0);
}

.menu-item:hover a,
.menu-item.focus a,
.menu-item.active a {
  background-size: 100% 100%;
}

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 17.8rem;
  padding-top: 1.666rem;
  position: relative;
}

.hero.mobile {
  display: none;
}

.template-homepage .hero {
  color: var(--color-ta-orange);
  min-height: unset;
  padding-bottom: 3.666rem;
}

.template-standardpage .hero {
  color: var(--color-ta-blue);
}

.template-standardpage .hero.ORANGE {
  color: var(--color-ta-orange);
}

.template-standardpage .hero.BROWN{
  color: var(--color-ta-brown);
}

.template-standardpage .hero.TEAL{
  color: var(--color-ta-teal);
}

.template-indexpage .hero,
.template-indexedpage .hero {
  color: var(--color-ta-orange);
}

.template-projectindexpage .hero {
  color: var(--color-ta-teal);
}

.template-peoplepage .hero {
  color: var(--color-ta-brown);
}

.hero-content {
  max-width: 29rem;
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 1500px) {
  .hero-content {
    margin-left: calc(((100vw - var(--content-width)) / 2) + var(--content-margin));
    margin-right: calc(((100vw - var(--content-width)) / 2) + var(--content-margin));
  }
}

.template-projectpage .hero-content {
  position: absolute;
  bottom: 2.5rem;
}

.hr {
  height: 4px;
  width: 100%;
  position: relative;
}

.hr .wide {
  height: 6px;
  width: 0;
  border-width: 0;
  margin: 0;
  transition: width .4s ease;
  position: absolute;
  bottom: 0;
}

.hr .narrow {
  height: 2px;
  width: 100%;
  border-width: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
}

.featured-page .hr,
.related-page .hr {
  margin-top: 1.5rem;
}

.featured-page-content:hover .wide,
.related-page:hover .wide {
  width: 100%;
}

.related-page hr {
  background-color: var(--color-ta-orange);
  color: var(--color-ta-orange);
}

.related-page.no-image hr,
.related-page.projectpage.no-image hr,
.related-page.casestudy.no-image hr,
.related-page.staff.no-image hr,
.related-page.not-staff.no-image hr {
  background-color: var(--color-ta-white);
  color: var(--color-ta-white);
}

.related-page.no-image:hover hr {
  width: 100%;
}

.related-page.projectpage hr {
  background-color: var(--color-ta-teal);
  color: var(--color-ta-teal);
}

.related-page.staff hr {
  background-color: var(--color-ta-brown);
  color: var(--color-ta-brown);
}

.related-page.not-staff hr {
  background-color: var(--color-ta-teal);
  color: var(--color-ta-teal);
}

.hero-tag {
  font-size: var(--font-size-2);
  display: inline-block;
  background-color: var(--color-ta-blue);
  color: var(--color-ta-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: Calibre-bold;
  padding: 0.5rem 1rem 0.1rem;
  position: relative;
  bottom: -4px;
  z-index: 10;
  margin-top: 0;
}

.ORANGE .hero-tag {
  background-color: var(--color-ta-orange);
}

.BROWN .hero-tag {
  background-color: var(--color-ta-brown);
}

.TEAL .hero-tag {
  background-color: var(--color-ta-teal);
}

.template-peoplepage .hero-tag {
  background-color: var(--color-ta-brown);
}

.template-indexpage .hero-tag,
.template-indexedpage .hero-tag {
  background-color: var(--color-ta-orange);
}

.template-projectindexpage .hero-tag,
.template-projectpage .project-hero-tag {
  background-color: var(--color-ta-teal);
}

.project-hero-tag {
  font-size: var(--font-size-0);
  display: inline-block;
  background-color: var(--color-ta-blue);
  color: var(--color-ta-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: Calibre-bold;
  padding: 0.25rem 0.5rem 0.1rem;
  position: relative;
  bottom: -4px;
  z-index: 10;
}

.hero h1 {
  font-size: var(--font-size-2);
  line-height: 1;
  margin-bottom: 0;
  margin-top: 1rem;
}

.hero h2 {
  font-size: var(--font-size-2);
  line-height: 1;
  margin-top: 0;
  z-index: 11;
  position: relative;
}

.template-projectpage .hero-content {
  position: absolute;
  bottom: 2.5rem;
}

.template-homepage .hero hr {
  color: var(--color-ta-orange);
  background-color: var(--color-ta-orange);
}

.template-homepage .hero h1 {
  font-family: Calibre-bold;
}

.template-standardpage .hero h1,
.template-indexpage .hero h1,
.template-indexedpage .hero h1,
.template-projectindexpage .hero h1,
.template-peoplepage .hero h1 {
  font-family: Calibre-bold;
  text-transform: unset;
  letter-spacing: unset;
}

.template-standardpage .hero h2,
.template-indexpage .hero h2,
.template-indexedpage .hero h2,
.template-projectindexpage .hero h2,
.template-peoplepage .hero h2 {
  font-family: Calibre-medium;
  text-transform: unset;
  letter-spacing: unset;
}

.template-projectpage .hero h1 {
  display: block;
  margin-top: 0;
  position: relative;
  z-index: 11;
}

.template-projectpage .hero h1 > span,
.hero h2 > span {
  background-color: #FFF;
  padding-top: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: inline-block;
}

.template-projectpage .hero h1 > span:first-child,
.hero h2 > span:first-child {
  padding-top: 1rem;
}

.template-projectpage .hero h1 > span:last-child,
.hero h2 > span:last-child {
  padding-bottom: 0.5rem;
  position: relative;
  top: -1px;
}

.template-projectpage.report .report-container {
  display: flex;
  margin-bottom: 2.5rem;
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
  margin-top: 4.5rem;
}

.report-container .report-project-tag {
  text-transform: uppercase;
  font-size: var(--font-size-0);
  font-family: Calibre-bold;
  letter-spacing: var(--letter-spacing-2);
}

.report-image {
  flex-basis: 30%;
  margin-right: 5%;
}

.report-image.mobile {
  display: none;
}

.report-content {
  flex-basis: 65%;
}

.report-content > h1 {
  margin-top: 1rem;
}

.report-content .streamfields {
  margin-top: 0;
}

.featured-page {
  height: 22.222rem;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.featured-page.desktop {
  min-height: 22.222rem;
  height: 50vw;
  width: 100%;
}

.featured-page.mobile {
  display: none;
}

.featured-page-content {
  background-color: rgba(255,255,255,1);
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
  width: 15rem;
  padding: 1.5rem 1rem;
  position: absolute;
  bottom: 3.5rem;
  max-width: calc(100% - var(--content-margin) - var(--content-margin));
}

.featured-page-content p {
  line-height: 1rem;
  margin-top: 0.5rem;
}

.featured-page-content h2 {
  margin-top: 0;
}

.button a {
  border: 1px solid var(--color-ta-black);
  padding: 0.75rem 1.5rem 0.5rem;
  font-size: var(--font-size-0);
  letter-spacing: 0.1em;
  color: var(--color-ta-black);
  margin: 1.3rem 0 0;
  display: inline-block;
  text-transform: uppercase;
  background-color: transparent;
  transition: all .4s ease;
}

.button a:hover {
  color: var(--color-ta-white);
  background-color: var(--color-ta-black);
}

.related-people .button.staff a {
  color: var(--color-ta-nearlyblack);
  background-color: var(--color-ta-brown-10-tint);
}

.related-people .button.not-staff a {
  background-color: var(--color-ta-teal-10-tint);
}

.related-people .button.staff a {
  border: none;
  border-top: 0.2rem solid var(--color-ta-brown-50-tint);
}

.related-people .button.not-staff a {
  border: none;
  border-top: 0.2rem solid var(--color-ta-teal-50-tint);
}

.related-people .button a {
  margin-top: 0;
  font-family: Calibre-bold;
  text-transform: none;
  letter-spacing: unset;
  text-align: center;
  min-width: 256px;
}

@media screen and (max-width: 1000px) {
  .related-people .button a {
    min-width: 227px;
  }
}

.related-people .button a:hover {
  color: var(--color-ta-nearlyblack);
}

.featured-page.standardpage hr {
  background-color: var(--color-ta-blue);
}

.featured-page.indexpage hr {
  background-color: var(--color-ta-orange);
}

.featured-page.peoplepage hr {
  background-color: var(--color-ta-brown);
}

.featured-page.projectindexpage hr,
.featured-page.projectpage hr {
  background-color: var(--color-ta-teal);
}

.featured-page.standardpage h2,
.featured-page.indexpage h2,
.featured-page.peoplepage h2,
.featured-page.projectindexpage h2,
.featured-page.projectpage h2 {
  font-size: var(--font-size-0);
  letter-spacing: var(--letter-spacing-1);
  font-family: Calibre-bold;
  text-transform: uppercase;
}

.featured-page.projectindexpage h2,
.featured-page.projectpage h2 {
  color: var(--color-ta-teal);
}

.featured-page.peoplepage h2 {
  color: var(--color-ta-brown);
}

.featured-page.standardpage h2 {
  color: var(--color-ta-blue);
}

.featured-page.indexpage h2 {
  color: var(--color-ta-orange);
}

.filters {
  text-transform: uppercase;
  font-family: Calibre-bold;
  font-size: var(--font-size-0);
  letter-spacing: var(--letter-spacing-2);
  padding: 0.4rem 0 0.25rem 0;
  line-height: 1.75;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
}

.filters a {
  padding: 0 0.3275rem;
  opacity: 1;
  transition: opacity .4s ease;
}

.filters a.active,
.filters a:hover {
  opacity: 0.75;
}

.projects-section .filters {
  border-top: 2px solid var(--color-ta-teal);
  border-bottom: 2px solid var(--color-ta-teal);
  color: var(--color-ta-teal);
}

.categories-section .filters {
  border-top: 2px solid var(--color-ta-orange);
  border-bottom: 2px solid var(--color-ta-orange);
  color: var(--color-ta-orange);
}

.related-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
  margin-top: 5.5rem;
  margin-bottom: -2.5rem;
}
.related-people {
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
  margin-top: 2.5rem;
  margin-bottom: -2.5rem;
}

.related-people-items {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.thumbnail {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  padding: 34%;
  transition: background-size 0.4s;
}

a:hover .thumbnail {
  background-size: 110%;
}

.template-homepage .related-pages {
  margin-bottom: 3rem;
  margin-top: 4rem;
}

@media (min-width: 1500px) {
  .template-homepage article > section {
    max-width: 100%;
  }
  .template-homepage .related-pages {
    padding: 0 calc((100vw - var(--content-width)) / 2);
  }
  .featured-page-content {
    margin: 0 calc(((100vw - var(--content-width)) / 2) + var(--content-margin));
  }
  .footer .footer-bottom-divider {
    margin-left: calc(((100vw - var(--content-width)) / 2) + var(--content-margin));
    margin-right: calc(((100vw - var(--content-width)) / 2) + var(--content-margin));
  }
}

.projects-section .related-pages,
.categories-section .related-pages {
  margin-top: 0;
}

.related-page {
  flex-basis: 30%;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-ta-black);
  margin-right: 5%;
  overflow: hidden;
}

.related-page.hidden {
  display: none;
}

.related-page:nth-child(3n) {
  margin-right: 0;
}

.related-page p {
  margin-top: 0.25rem;
  line-height: 1rem;
}

.template-peoplepage .related-page p {
  margin-top: 0;
}

.related-page.no-image p {
  margin-top: 0.25em;
}

.related-page h3,
.related-page h4 {
  margin-top: 0;
}

.related-page h4 {
  font-size: var(--font-size-6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ta-orange);
}

.related-page h3 {
  font-size: var(--font-size-1);
}

.related-page.projectpage h4 {
  color: var(--color-ta-teal);
}

.related-page.staff h4 {
  color: var(--color-ta-brown);
}

.related-page.not-staff h4 {
  color: var(--color-ta-teal);
}

.template-projectindexpage .related-page h4 {
  color: var(--color-ta-teal);
}

.template-projectindexpage .related-page hr {
  background-color: var(--color-ta-teal);
}

.related-page.no-image h4 {
  color: var(--color-ta-white);
}

.related-page.no-image h3 {
  color: var(--color-ta-white);
}

.related-page .img-border-bottom {
  height: 0.2rem;
  background-color: var(--color-ta-orange-50-tint);
}

.related-page.projectpage .img-border-bottom {
  height: 0.2rem;
  background-color: var(--color-ta-teal-50-tint);
}

.related-page.staff .img-border-bottom {
  height: 0.2rem;
  background-color: var(--color-ta-brown-50-tint);
}

.related-page.not-staff .img-border-bottom {
  height: 0.2rem;
  background-color: var(--color-ta-teal-50-tint);
}

.template-projectindexpage .related-page .img-border-bottom {
  height: 0.2rem;
  background-color: var(--color-ta-teal-50-tint);
}

.related-page.standardpage:not(.no-image),
.related-page.tool:not(.no-image) {
  background-color: var(--color-ta-orange-10-tint);
}

.related-page.staff:not(.no-image) {
  background-color: var(--color-ta-brown-10-tint);
}

.related-page:not(.no-image) {
  background-color: var(--color-ta-teal-10-tint);
}

.related-page:not(.no-image) .related-page-content > *:not(.img-border-bottom):not(.thumbnail) {
  padding: 0 1rem;
}

.related-page.projectpage:not(.no-image) {
  
}

.related-page.no-image {
  padding: 1rem;
  background-color: var(--color-ta-orange);
  color: var(--color-ta-white);
}

.template-projectindexpage .related-page.no-image {
  background-color: var(--color-ta-teal);
}

.related-page.no-image.standardpage {
  background-color: var(--color-ta-blue);
}

.related-page.no-image.projectpage {
  background-color: var(--color-ta-teal);
}

.related-page.no-image.staff {
  background-color: var(--color-ta-brown);
}

.related-page.no-image.not-staff {
  background-color: var(--color-ta-teal);
}

.related-page .category-name {
  height: 0.35rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.related-page.no-image .category-name {
  height: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}

section.streamfields {
  margin-top: 2rem;
}

.streamfields > .rich-text,
.streamfields > .heading,
.streamfields > .button,
.streamfields > .streamfield-quote,
.streamfields > hr,
.streamfield-embed,
.streamfield-html {
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
  max-width: 24.5rem;
}

.streamfields > .streamfield-quote blockquote {
  margin: 0;
}

.streamfield-image {
  margin-left: calc(var(--content-margin) - 2rem);
  max-width: 28.5rem;
}

.report-container .streamfields > .rich-text,
.report-container .streamfields > .heading,
.report-container .streamfields > .button,
.report-container .streamfields > .streamfield-quote,
.report-container .streamfields > hr,
.report-container .streamfield-image,
.report-container .streamfield-embed,
.report-container .streamfield-html {
  margin-left: 0;
  margin-right: 0;
}

.streamfields .people-group {
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
}

.streamfield-image,
.streamfield-embed,
.streamfield-html {
  margin-top: 1.5em;
  margin-bottom: 0;
  position: relative;
}

.streamfield-image .caption {
  position: absolute;
  right: -7.8rem;
  width: 7.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-0);
}

@media screen and (max-width: 1200px) {
  .streamfield-image .caption {
    position: relative;
    right: unset;
    top: unset;
    transform: unset;
    margin-top: 1rem;
  }
}

.streamfield-image .caption hr {
  width: 2.4rem;
  height: 4px;
  margin: 0;
  margin-top: 0;
  border-width: 0;
  background-color: var(--color-ta-orange);
  color: var(--color-ta-orange);
}

.caption div {
  margin-top: 1em;
  font-family: Calibre-normal-italic;
}

.streamfield-image .attribution {
  text-align: right;
  font-family: Calibre-lighter-italic;
  font-size: var(--font-size-6);
  margin-top: 0.5em;
  display: inline-block;
}

@media screen and (max-width: 1000px) {
  .streamfield-image .caption,
  .streamfield-image .attribution {
    margin-left: 1rem;
  }
}

.streamfields > .streamfield-quote .blockquote p {
  margin-top: 0.75em;
  margin-bottom: 0;
  font-size: var(--font-size-5);
  font-family: Calibre-lighter-italic;
  line-height: 1.3;
}

.streamfields > .streamfield-quote .blockquote span {
  background-image: linear-gradient(180deg,transparent 65%,var(--color-ta-teal-10-tint) 0);
}

.streamfield-quote .attribution {
  text-align: right;
  font-family: Calibre-lighter-italic;
  font-size: var(--font-size-6);
  margin-top: 0.5em;
  display: inline-block;
}

.streamfields > hr {
  margin-top: 1.5em;
  margin-bottom: 0;
}

.streamfields > .people-group > .person-block,
.person-block {
  display: grid;
  grid-template-areas: "image content";
  column-gap: 1rem;
  margin-top: 1.5rem;
  padding-bottom: 1.125rem;
}

.template-personpage .person-block {
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
}

.template-personpage .person-block.no-image {
  display: block;
}

.template-personpage .person-block > .content-block {
  display: flex;
  flex-direction: column;
}

.template-personpage .person-block > .content-block .role {
  font-size: var(--font-size-1);
  line-height: 1.15;
  margin-top: 0;
  font-family: Calibre-bold;
}

.template-personpage .person-block > .content-block .rich-text {
  margin-top: 1rem;
}

.template-personpage .person-block > .content-block > .hr-bottom {
  margin-top: 1.5rem;
}

.person-image.mobile {
  display: none;
}

@media screen and (max-width: 500px) {
  .person-image.desktop {
    display: none;
  }

  .person-image.mobile {
    display: block;
  }

  .streamfields > .people-group > .person-block,
  .person-block {
    display: block;
  }
}

.person-block .img-border-bottom {
  height: 0.2rem;
  background-color: var(--color-ta-brown);
}

.person-block > .person-image {
  grid-area: image;
}

.person-block > .content-block {
  grid-area: content;
  max-width: 24.5rem;
}

.person-block > .content-block > .hr {
  height: 4px;
  margin: 0;
  border-width: 0;
  background-color: var(--color-ta-brown);
}

.person-block > .content-block > .name,
.person-block > .content-block > .person-projects h5 {
  font-size: var(--font-size-1);
  font-family: Calibre-bold;
}

.person-block > .content-block > .person-projects p {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.person-block > .content-block > .contact-block > .email,
.person-block > .content-block > .contact-block > .link {
  font-size: var(--font-size-1);
  font-family: Calibre-medium;
  color: var(--color-ta-brown);
}

.person-block > .content-block > .contact-block > .email a,
.person-block > .content-block > .contact-block > .link a {
  opacity: 1;
  transition: opacity .4s ease;
}

.person-block > .content-block > .contact-block > .email a:hover,
.person-block > .content-block > .contact-block > .link a:hover {
  opacity: 0.75;
}

.person-block > .content-block > .rich-text > p:first-child {
  margin-top: 0;
}

.person-block > .content-block > .contact-block {
  display: flex;
  flex-direction: column;
}

.footer {
  background-color: var(--color-ta-nearlyblack);
  font-size: var(--font-size-1);
  line-height: 1rem;
  margin: 0 auto;
  margin-top: 5.5rem;
}

.footer a {
  opacity: 1;
  transition: opacity .4s ease;
}

.template-homepage .footer {
  margin-top: 0;
}

.footer-content {
  color: var(--color-ta-white);
}

.footer-title {
  font-size: var(--font-size-2);
  font-family: Calibre-bold;
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
  margin-top: 3.5rem;
}

.footer-columns {
  display: flex;
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
  margin-top: 1.5rem;
  font-family: Calibre-normal;
}

.footer-column-1 {
  flex-basis: 25%;
}

.footer-column-2 {
  flex-basis: 25%;
}

.footer-column-3 {
  flex-basis: 25%;
  display: flex;
  justify-content: flex-end;
}

.footer-column-4 {
  flex-basis: 25%;
  display: flex;
  justify-content: flex-end;
}

.desktop-hidden {
  display: none;
}

@media screen and (max-width: 650px) {
  .mobile-hidden {
    display: none;
  }

  .desktop-hidden {
    display: unset;
  }

  .footer-columns {
    flex-wrap: wrap;
    gap: 8%;
  }

  .footer-column-1 {
    flex-basis: 46%;
  }
  
  .footer-column-2 {
    flex-basis: 46%;
  }
  
  .footer-column-3 {
    flex-basis: 46%;
    justify-content: flex-start;
  }
  
  .footer-column-4 {
    flex-basis: 46%;
    flex-grow: 0;
    justify-content: flex-start;
  }

  .footer-description,
  .footer-images {
    margin-top: 1.5rem;
  }

  .footer-title {
    font-size: var(--font-size-3);
  }
  
  .related-page {
    flex-basis: 47%;
    margin-right: 6%;
  }

  .related-page:nth-child(3n) {
    margin-right: 6%;
  }

  .related-page:nth-child(2n) {
    margin-right: 0;
  }

  .related-page.extra {
    display: none;
  }

  .report-image.desktop {
    display: none;
  }

  .report-image.mobile {
    max-width: 12.25rem;
    width: 100%;
    margin-bottom: 1rem;
    display: block;
  }

  .report-content {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 450px) {
  .related-page {
    flex-basis: 100%;
    margin-right: 0;
  }

  .related-page:nth-child(3n) {
    margin-right: 0;
  }

  .related-page:nth-child(2n) {
    margin-right: 0;
  }
}

.footer-column-3-container {
  max-width: 5.75rem;
}

.footer-bottom-divider {
  border-top: 1px solid;
  margin-top: 3rem;
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
}

.footer-bottom {
  margin: 0rem 1rem 1rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 1500px) {
  .footer-title,
  .footer-columns,
  .footer-bottom {
    margin-left: calc(((100vw - var(--content-width)) / 2) + var(--content-margin));
    margin-right: calc(((100vw - var(--content-width)) / 2) + var(--content-margin));
  }
}

.footer-address p {
  font-size: var(--font-size-0);
  line-height: 1.25;
}
.footer-address p:first-of-type {
  margin-top: 0;
}

.footer-emails {
  margin-top: 0;
}

.footer-emails a,
.footer-phone-numbers a {
  font-size: var(--font-size-0);
  color: var(--color-ta-white);
  display: inline-block;
}

.footer-emails div,
.footer-phone-numbers div {
  line-height: 1;
}

.footer-map-links {
  margin-top: 1.5rem;
  line-height: 0.75rem;
}

.footer-map-link {
  margin-bottom: 0.5rem;
}

.footer-map-link a,
.footer-pdf-map-link a {
  color: var(--color-ta-white);
  display: inline-block;
  border-bottom: 2px solid;
}

.footer-menu a,
.footer-section-title {
  color: var(--color-ta-white);
  font-size: var(--font-size-0);
  font-family: Calibre-medium;
  display: inline-block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer-section-title {
  margin-bottom: 0;
}

.footer-section-title:not(:first-of-type) {
  margin-top: 1.5rem;
}

.footer-menu a .description {
  font-size: var(--font-size-1);
  font-family: Calibre-normal;
  line-height: 0.8rem;
  text-transform: initial;
}

.footer-menu div:not(:first-child) {
  margin-top: 0.35rem;
}

.footer-images {
  width: 125px;
}

.footer-images img:not(:first-child) {
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid;
}

.footer-description {
  display: flex;
}

.footer-description p {
  font-size: var(--font-size-0);
  line-height: 1.25;
  margin-top: 0;
}

@media screen and (max-width: 1499px) {
  .footer-copyright {
    margin-left: var(--content-margin-small);
  }
}

.footer-social-media {
  display: flex;
}

@media screen and (max-width: 1499px) {
  .footer-social-media {
    margin-right: var(--content-margin-small);
  }
}

.footer-social-media a {
  margin-left: 0.85rem;
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.9;
}

.footer-social-media a:hover {
  opacity: 0.75;
}

.footer-social-media a.social-media-phone {
  margin-left: 0.8rem;
}

.footer-social-media a.social-media-email {
  margin-left: 0.65rem;
}

.footer-social-media a.social-media-map {
  margin-left: 1rem;
}

.footer-social-media a.social-media-phone img,
.footer-social-media a.social-media-email img {
  width: auto;
  height: 0.85rem;
}

.footer-emails a:hover,
.footer-phone-numbers a:hover,
.footer-map-link a:hover,
.footer-menu a:hover,
a.footer-address:hover {
  opacity: 0.75;
}

@media screen and (max-width: 1000px) {
  :root {
    --content-margin: 1rem;
    --content-margin-small: 1rem;
    --content-margin-large: 1rem;
  }

  .header > .header-menu {
    display: none;
  }

  .header .menu-button {
    display: inline-block;
  }

  .header ~ .header-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255,255,255,0);
    pointer-events: none;
    z-index: 9;
    transition: background-color .4s ease;
    justify-content: center;
    flex-direction: column;
  }

  .header.active ~ .header-menu {
    pointer-events: auto;
    background-color: rgba(255,255,255,1);
  }

  .header ~ .header-menu .menu-item {
    margin: 1rem;
    font-size: 1rem;
    opacity: 0;
    transition: opacity .4s ease;
  }

  .header.active ~ .header-menu .menu-item {
    opacity: 1;
  }

  .menu-button {
    padding: 10px;
    cursor: pointer;
    display: inline-block;
  }

  .header.active .burger-icon {
    background-color: transparent;
  }

  .header.active .burger-icon:before {
    transform: translateY(9px) rotate(45deg);
  }

  .header.active .burger-icon:after {
    transform: translateY(-8px) rotate(-45deg);
  }

  .burger-icon:before {
    content: "";
    top: -8px;
  }

  .burger-icon:after {
    content: "";
    top: 6px;
  }

  .burger-icon,
  .burger-icon:before,
  .burger-icon:after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-ta-blue);
    -webkit-transition-property: background-color,-webkit-transform;
    -moz-transition-property: background-color,-moz-transform;
    -o-transition-property: background-color,-o-transform;
    transition-property: background-color,transform;
    -webkit-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -o-transition-duration: .4s;
    transition-duration: .4s;
    position: relative;
  }

  .template-homepage .hero {
    margin-bottom: 3rem;
    min-height: unset;
  }

  .featured-page.mobile {
    display: block;
  }

  .featured-page.desktop {
    display: none;
  }

  .hero-content {
    max-width: 24.5rem;
  }
  
  .hero h1 {
    line-height: 1.05;
  }
  
  .hero h2 {
    line-height: 1.05;
    z-index: 11;
    position: relative;
  }

  .hero .hero-tag {
    line-height: 1.25;
  }

  .hero.desktop {
    display: none;
  }

  .hero.mobile {
    display: block;
  }

  .hero.mobile h1,
  .hero.mobile h2 {
    max-width: 24.5rem;
  }

  .filters {
    flex-direction: column;
  }
  
  .streamfield-image {
    margin-left: calc(var(--content-margin) - 1rem);
    max-width: 26.5rem;
  }

  .footer-social-media,
  .footer-copyright {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 1000px) {
 html {
   font-size: 24px;
 }
 .contact,
 .signup {
  margin-bottom: 3rem;
 }
}

.contact,
.signup {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto;
  grid-template-areas: "intro form";
  column-gap: 1.5rem;
  margin-bottom: 5.5rem;
  margin-top: 4rem;
  margin-left: var(--content-margin);
  margin-right: var(--content-margin);
}

@media screen and (min-width: 1500px) {
  .contact,
  .template-homepage .signup {
    padding: 0 calc((100vw - var(--content-width)) / 2);
  }
}

@media screen and (max-width: 780px) {
  .contact,
  .signup {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "intro ."
      "form form";
  }
}

@media screen and (max-width: 640px) {
  .contact,
  .signup {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "intro"
      "form";
  }
}

.contact-intro,
.signup-intro {
  grid-area: intro;
  background-color: var(--color-ta-brown);
  color: var(--color-ta-white);
  padding: 1.5rem 1rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 15rem;
}

.signup-intro {
  background-color: var(--color-ta-blue);
}

.contact-intro-name h4,
.signup-intro-name h4 {
  font-size: var(--font-size-6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0;
}

.contact-intro-content h3,
.signup-intro-content h3 {
  font-size: var(--font-size-1);
}

.contact-intro hr.narrow,
.signup-intro hr.narrow {
  background-color: white;
}

.contact-form {
  grid-area: form;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  grid-template-areas:
    "name name"
    "email subject"
    "message ."
    "message submit";
  column-gap: 1.5rem;
  row-gap: 1rem;
  padding: 1.5rem 0 calc(1.5rem - 4px);
}

.signup-form {
  grid-area: form;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  grid-template-areas:
    "name name"
    "email submit";
  column-gap: 1.5rem;
  row-gap: 1rem;
  padding: 1.5rem 0 calc(1.5rem - 4px);
}

.contact-form .form-name,
.signup-form .form-name {
  grid-area: name;
}

.contact-form .form-email,
.signup-form .form-email {
  grid-area: email;
}

.contact-form .form-subject {
  grid-area: subject;
}

.contact-form .form-message {
  grid-area: message;
  align-self: end;
}

.contact-form .form-submit,
.signup-form .form-submit {
  grid-area: submit;
  align-self: end;
}

@media screen and (max-width: 1500px) {
  .contact-form {
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "name name"
      "email subject"
      "message message"
      "submit .";
  }

  .signup-form {
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "name name"
      "email email"
      "submit .";

  }
}

@media screen and (max-width: 780px) {
  .contact-form {
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas:
      "name name"
      "email email"
      "subject subject"
      "message message"
      "submit .";
  }

  .signup-form {
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "name name"
      "email email"
      "submit .";
  }
}

.contact-form input,
.contact-form button,
.contact-form textarea,
.signup-form input,
.signup-form button,
.signup-form textarea {
  width: 100%;
}

.contact-form input,
.contact-form textarea,
.signup-form input,
.signup-form textarea  {
  border: 0;
  outline: 0;
  border-bottom: 1px solid var(--color-ta-brown);
  font-size: var(--font-size-1);
  transition: width .4s ease;
}

.signup-form input,
.signup-form textarea {
  border-bottom: 1px solid var(--color-ta-blue);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 2px solid var(--color-ta-brown);
}

.signup-form input:focus,
.signup-form textarea:focus {
  border-bottom: 2px solid var(--color-ta-blue);
}

.contact-form textarea,
.signup-form textarea {
  height: calc(100% - 1.15em);
}

.contact-form span,
.signup-form span {
  display: block;
  font-size: var(--font-size-6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0;
  font-family: Calibre-bold;
  font-weight: 400;
}

.contact-form button,
.signup-form button {
  text-transform: uppercase;
  font-size: 0.65rem;
  font-family: Calibre-medium;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.15; /* For all browsers */
  margin: 0; /* Firefox and Safari have margin */
  overflow: visible; /* Edge hides overflow */
  -webkit-appearance: button; /* Safari otherwise prevents some styles */
  background: transparent;
  cursor: pointer;
  border: 1px solid grey;
  padding: 0.5rem 0 0.25rem;
  color: inherit;
}

.contact-form button:hover {
  background-color: var(--color-ta-brown);
  border-color: var(--color-ta-brown);
  color: white;
}

.signup-form button:hover {
  background-color: var(--color-ta-blue);
  border-color: var(--color-ta-blue);
  color: white;
}

.contact-form button::-moz-focus-inner,
.signup-form button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

.contact-form button:-moz-focusring,
.signup-form button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

@media screen and (max-width: 500px) {
  .hero h1 {
    font-size: var(--font-size-3);
  }
  
  .hero h2 {
    font-size: var(--font-size-3);
  }
}