@charset "utf-8";
/* CSS Document */
/*===========================================================================================================*/
/*=========================================== STATUS BADGE ==================================================*/
/*===========================================================================================================*/
/* completed reads as an outlined badge, in progress as a filled gold one */
.project-page .project-status {
  display: inline-block;
  padding: 5px 10px;
  font-size: 9px;
  line-height: 1.2em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.project-page .project-status.is-complete {
  border: solid 1px #fff;
}
.project-page .project-status.is-progress {
  border: solid 1px transparent;
  background-color: rgba(166, 122, 61, 0.6);
}

/*===========================================================================================================*/
/*=========================================== HERO ==========================================================*/
/*===========================================================================================================*/
.project-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
  min-height: 559px;
  text-align: center;
  background-color: #4c5158;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.project-hero:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.project-hero > .container {
  position: relative;
  z-index: 2;
  top: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.project-hero.ready > .container {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
/* The only left-aligned item in an otherwise centred hero. Block rather than
   floated: floated, the status badge shared its line and drifted off centre. */
.project-hero .back-link {
  display: block;
  text-align: left;
  margin-bottom: 100px;
  font-size: 15px;
  line-height: 1.2em;
  letter-spacing: 3px;
  text-transform: none;
  color: #fff;
}
.project-hero .back-link:hover,
.project-hero .back-link:focus {
  color: #c1d9ff;
  text-decoration: none;
}
.project-hero h1 {
  margin: 18px 0 0;
  font-size: 47px;
  line-height: 56.4px;
  color: #fff;
}
.project-hero .project-sub {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.55em;
  letter-spacing: 1px;
  color: #fff;
  opacity: .85;
  filter: alpha(opacity=85);
}

/*===========================================================================================================*/
/*=========================================== PROJECT FACTS =================================================*/
/*===========================================================================================================*/
.project-facts {
  padding: 46px 0;
  background-color: #fff;
  border-bottom: solid 1px #dadada;
}
.project-facts .fact {
  display: block;
  text-align: center;
}
.project-facts .fact .label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  line-height: 1.2em;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #65676b;
}
.project-facts .fact .value {
  display: block;
  font-size: 19px;
  line-height: 1.5em;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #174691;
}

/*===========================================================================================================*/
/*=========================================== COPY ==========================================================*/
/*===========================================================================================================*/
.project-copy {
  padding: 50px 0 60px;
  background-color: #fff;
}
.project-copy h2 {
  margin: 0;
  text-align: center;
}
.project-copy .heading-bar {
  display: block;
  width: 206px;
  height: 3px;
  margin: 38px auto 0;
  background-color: #174691;
}
.project-copy .copy-body {
  margin-top: 40px;
}
.project-copy .copy-body p:last-child {
  margin-bottom: 0;
}

/*===========================================================================================================*/
/*=========================================== VIDEO =========================================================*/
/*===========================================================================================================*/
.project-video {
  padding: 0 0 60px;
  background-color: #fff;
}
.project-video .video-block > div {
  margin: 15px 0;
}

/*===========================================================================================================*/
/*=========================================== GALLERY =======================================================*/
/*===========================================================================================================*/
.project-gallery {
  padding: 60px 0 100px;
  background-color: #fff;
}
.project-gallery h2 {
  margin: 0 0 40px;
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
}
.project-gallery .gallery-grid {
  margin: 0 -10px;
  padding: 0;
  font-size: 0;
}
.project-gallery .gallery-item {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px 20px;
  margin: 0 !important;
}
/* one full image, then a pair, then three per row for the rest */
.project-gallery .gallery-item.is-full  { width: 100%; }
.project-gallery .gallery-item.is-half  { width: 50%; }
.project-gallery .gallery-item.is-third { width: 33.3333%; }
/* the ratio box crops each slot the way the prototype does; the anchor keeps
   its .fresco class and href so the existing lightbox still handles the click */
.project-gallery .gallery-item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.project-gallery .gallery-item a:before {
  content: '';
  display: block;
}
.project-gallery .gallery-item.is-full a:before  { padding-bottom: 44.87%; }
.project-gallery .gallery-item.is-half a:before  { padding-bottom: 61.89%; }
.project-gallery .gallery-item.is-third a:before { padding-bottom: 69.54%; }
.project-gallery .gallery-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  font-family: 'object-fit: cover;';
  transition: transform .4s ease;
  -webkit-transition: transform .4s ease;
  -moz-transition: transform .4s ease;
  -o-transition: transform .4s ease;
}
.project-gallery .gallery-item a:hover img {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
}

/*===========================================================================================================*/
/*=========================================== RELATED PROJECTS ==============================================*/
/*===========================================================================================================*/
.related-projects {
  padding: 96px 0 90px;
  background-color: #174691;
}
.related-projects .section-heading {
  margin-bottom: 65px;
  text-align: center;
}
.related-projects .section-heading h2 {
  margin: 0;
  color: #fff;
}
.related-projects .section-heading p {
  max-width: 890px;
  margin: 25px auto 0;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.related-projects .row {
  margin-bottom: -40px;
}
.related-projects .col-sm-6 {
  margin-bottom: 40px;
}
.related-projects .related-card {
  display: block;
  text-decoration: none;
}
.related-projects .related-card .img {
  display: block;
  height: 300px;
  background-color: #d4d4d4;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.related-projects .related-card .meta {
  display: block;
  padding-top: 20px;
}
.related-projects .related-card .status-row {
  display: block;
  margin-bottom: 10px;
}
.related-projects .related-card .year {
  display: inline-block;
  margin-left: 12px;
  font-size: 11px;
  line-height: 1.2em;
  letter-spacing: 1px;
  font-weight: 500;
  color: #fff;
  opacity: .8;
  filter: alpha(opacity=80);
}
.related-projects .related-card .title {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.4em;
  letter-spacing: 2.2px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.related-projects .related-card .sub {
  display: block;
  font-size: 13px;
  line-height: 1.55em;
  letter-spacing: 0.3px;
  color: #fff;
}
.related-projects .related-card:hover .title {
  color: #c1d9ff;
}

/*===========================================================================================================*/
/*=========================================== RESPONSIVE ====================================================*/
/*===========================================================================================================*/
@media screen and (max-width: 1200px) {
  .project-hero h1 {
    font-size: 38px;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 991px) {
  .project-hero {
    padding: 130px 0 70px;
    min-height: 440px;
  }
  .project-hero h1 {
    font-size: 32px;
  }
  .project-hero .back-link {
    margin-bottom: 60px;
    font-size: 13px;
    letter-spacing: 2px;
  }
  .project-facts {
    padding: 36px 0 6px;
  }
  .project-facts .fact {
    margin-bottom: 30px;
  }
  .project-copy {
    padding: 40px 0 50px;
  }
  .project-gallery {
    padding: 50px 0 70px;
  }
  /* two per row at most: a third of a phone width shows nothing useful */
  .project-gallery .gallery-item.is-third {
    width: 50%;
  }
  .project-gallery .gallery-item.is-third a:before {
    padding-bottom: 61.89%;
  }
  .related-projects {
    padding: 70px 0 60px;
  }
  .related-projects .section-heading {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .project-hero {
    padding: 120px 0 60px;
    min-height: 0;
  }
  .project-hero h1 {
    font-size: 26px;
  }
  .project-hero .project-sub {
    font-size: 15px;
    letter-spacing: 0;
  }
  .project-copy .heading-bar {
    width: 150px;
    margin-top: 25px;
  }
  .project-gallery h2 {
    font-size: 20px;
  }
  /* stacked: every slot becomes full width on the same ratio, so the whole
     gallery reads as one column of identically sized photos */
  .project-gallery .gallery-grid {
    margin: 0;
  }
  .project-gallery .gallery-item,
  .project-gallery .gallery-item.is-full,
  .project-gallery .gallery-item.is-half,
  .project-gallery .gallery-item.is-third {
    width: 100%;
    padding: 0 0 15px;
  }
  .project-gallery .gallery-item.is-full a:before,
  .project-gallery .gallery-item.is-half a:before,
  .project-gallery .gallery-item.is-third a:before {
    padding-bottom: 61.89%;
  }
  .related-projects .related-card .img {
    height: 240px;
  }
}
