/* GLOBAL */

body {
  font-family: Roboto;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
}

body.show-nav {
  overflow: hidden;
}

a {
  font-weight: 400;
  text-decoration: none;
  color: #000;
}

a:visited {
  color: #000;
}

a:hover {
  color: #999;
  transition: color 300ms linear;
}

h2 {
  font-size: 60px;
  font-weight: 400;
}

h3 {
  font-size: 36px;
  font-weight: 400;
}

h4 {
  font-size: 28px;
  font-weight: 400;
}

header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: top 300ms ease-in-out 0ms, background-color 200ms linear 0ms;
  height: 178px;
}

header svg g {
  fill: #000;
  transition: color 200ms linear 0ms;
}

.home header {
  background-color: rgba(255, 255, 255, 0);
}

.home header.tinted {
  background-color: rgba(255, 255, 255, 0.8);
}

.home.show-nav header.tinted,
.show-nav header {
  background-color: transparent;
}

.home header svg g {
  fill: #fff;
}

.home header.tinted svg g {
  fill: #000;
}

.show-nav header svg g,
.home.show-nav header svg g {
  fill: #fff;
}

.home header nav button span {
  background-color: #fff;
}

.home header.tinted nav button span {
  background-color: #000;
}

.home.show-nav header nav button span {
  background-color: #fff;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 75px;
}

header h1 {
  width: 308px;
}

header nav {
  width: 38px;
  height: 29px;
}

header nav button {
  width: 38px;
  height: 29px;
  border: none;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  outline: none;
}

header nav button span {
  width: 38px;
  height: 4px;
  position: absolute;
  left: 0;
  transition: all 200ms linear 0ms;
  background-color: #000;
}

header nav button span.top-bar {
  top: 0;
}

header nav button span.middle-bar {
  top: 12px;
}

header nav button span.bottom-bar {
  top: 25px;
}

.show-nav header nav button span {
  background-color: #fff;
}

.show-nav header nav button span.top-bar {
  top: 12px;
  transform: rotate(45deg);
}

.show-nav header nav button span.middle-bar {
  opacity: 0;
}

.show-nav header nav button span.bottom-bar {
  top: 12px;
  transform: rotate(-45deg);
}

.nav-up {
  top: -178px;
}

#menu-overlay {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(0.9);
  transition: opacity 200ms linear 0ms, transform 200ms ease-in-out 0ms;
  z-index: 14;
}

.show-nav #menu-overlay {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

#menu-overlay a {
  color: #fff;
}

#menu-overlay a:hover {
  border-bottom: solid 4px #fff;
  transform: border-bottom 300ms linear;
}

.menu-list .container {
  display: flex;
  justify-content: flex-start;
}

.menu-list {
  padding-top: 146px;
}

.menu-text {
  width: calc(33.333% - 12px);
}

.menu-text li {
  margin-bottom: 26px;
}

main {
  display: block;
  padding-top: 0;
}

.offscreen {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 300ms linear 50ms, transform 600ms ease-in-out 0ms;
}

.onscreen {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 300ms linear 50ms, transform 600ms ease-in-out 0ms;
}

/* HOME SECTION */

.about {
  position: relative;
  background-color: black;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 120px;
}

.about video {
  width: 100%;
  height: auto;
}

@media screen and (min-aspect-ratio: 16 / 9) {
  .about {
    height: 100vh;
    padding-bottom: 0
  }
}

@media screen and (min-aspect-ratio: 16 / 9) {
  .about video {
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: center center
  }
}

.container {
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.case-studies .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.case-item {
  width: calc(50% - 12px);
  flex: 0 0 auto;
}

.case-item h4 {
  margin: 24px 0 60px 0;
}

.case-studies {
  margin-bottom: 70px;
}

.case-item a {
  display: block;
}

.latest-news {
  width: 100%;
  background-color: #ffffe0;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.latest-news .title {
  width: 100%;
  margin-bottom: 80px;
}

#news-grid {
  width: 100%;
}

.news-item {
  width: calc(33.333% - 12px);
  margin-bottom: 52px;
}

.news-item img {
  margin-bottom: 24px;
}

.news-item p {
  margin-bottom: 10px;
}

.news-item h3 {
  margin-bottom: 8px;
}

.news-item a {
  border-bottom: solid 1px #000;
  padding-bottom: 2px;
}

.news-item a:hover {
  color: #999;
  border-bottom: solid 1px #999;
  transition: color 300ms linear, border-bottom 300ms linear;
}

/* ABOUT SECTION */

.about-section {
  margin-top: 205px;
  margin-bottom: 55px;
}

.about-intro .container {
  display: flex;
  justify-content: space-between;
}

.about-intro {
  margin-bottom: 72px;
}

.who {
  width: calc(50% - 12px);
  flex: 0 0 auto;
}

.who h4 {
  margin-bottom: 6px;
}

.whoLeft {
  width: calc(33.333% - 12px);
  flex: 0 0 auto;
}

.whoLeftLong {
  width: calc(41.666% - 12px);
  flex: 0 0 auto;
}

.whoLeftLong p {
  margin-bottom: 30px;
}

.whoLeft h4 {
  margin-bottom: 6px;
}

.whoRight {
  width: calc(66.666% - 12px);
  flex: 0 0 auto;
}

.whoRight h4 {
  margin-bottom: 6px;
}

.what {
  width: calc(25% - 12px);
  flex: 0 0 auto;
}

.what h4 {
  margin-bottom: 6px;
}

.whatShort-container {
  display: flex;
  justify-content: space-between;
  flex: wrap;
}

.whatShort {
  width: calc(50% - 12px);
  flex: 0 0 auto;
}

.hero {
  width: 100%;
  margin-bottom: 72px;
}

.twoWide {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.twoWideImg {
  width: calc(50% - 12px);
  flex: 0 0 auto;
}

.twoWideImg img {
  width: 100%;
  margin-bottom: 72px;
}

.leftText {
  margin-bottom: 72px;
}

/* WORK SECTION */

.work-section {
  margin-top: 205px;
  margin-bottom: 55px;
}

.work-studies .container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: row wrap;
  align-content: flex-end;
}

.work-nav {
  width: 100%;
  margin-bottom: 80px;
}

.work-nav .container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: row wrap;
  align-content: flex-end;
}

.nav-item {
  width: calc(33.333% - 16px);
  margin-right: 24px;
  flex: 0 0 auto;
}

.nav-item-no-margin {
  width: calc(33.333% - 16px);
  flex: 0 0 auto;
}

.filters a {
  margin-right: 16px;
}

.selected {
  border-bottom: solid 1px #000;
  padding-bottom: 1px;
}

.selected:hover {
  border-bottom: solid 1px #999;
  transition: all 300ms linear;
}

.selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #2B2E34;
}

.selector:hover {
  cursor: pointer;
  color: #999;
  transition: color 300ms linear;
}

.selector img {
  width: 24px;
}

.work-item {
  width: calc(33.333% - 16px);
  margin-right: 24px;
  flex: 0 0 auto;
}

.work-item h4 {
  margin: 18px 0 70px 0;
}

.work-item a {
  display: block;
}

.work-list {
  margin-bottom: 72px;
}

.work-list-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 400;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: solid 1px #2B2E34;
}

.work-list-nav p {
  width: calc(33.333% - 16px);
}

.work-list-item {
  display: block;
}

.work-list-item a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: solid 1px #2B2E34;
}

.work-list-item p {
  width: calc(33.333% - 16px);
}

.work-list-item:hover {
  cursor: pointer;
  background-color: #FAFAFA;
  transition: background-color 300ms linear;
}

.title-bold {
  font-weight: 400;
}

/* NEWS SECTION */

.news-section {
  margin-top: 205px;
  margin-bottom: 55px;
}

.news-list {
  margin-bottom: 72px;
}

.news-list-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #2B2E34;
}

.news-list-item:first-child {
  border-top: solid 1px #2B2E34;
}

.news-list-item div {
  width: calc(33.333% - 16px);
}

.news-text p {
  margin-bottom: 16px;
}

/* SERVICES SECTION */

.services-section {
  margin-top: 205px;
  margin-bottom: 55px;
}

.services-intro .container {
  display: flex;
  justify-content: space-between;
}

.services-intro {
  margin-bottom: 72px;
}

.services-nav {
  margin-bottom: 16px;
}

.services-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

/* CONTACT SECTION */

.contact-section {
  margin-top: 205px;
  margin-bottom: 55px;
}

.contact-intro .container {
  display: flex;
  justify-content: space-between;
}

.contact-intro {
  margin-bottom: 72px;
}

#map {
  width: 100%;
  height: 80vh;
  margin-bottom: 72px;
}

.contact-intro .who h4 {
  margin-bottom: 64px;
}

.wide {
  width: 100%;
  margin-bottom: 72px;
}

/* PRESS SECTION */

.press-section {
  margin-top: 205px;
  margin-bottom: 55px;
}

.press-studies .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.press-item {
  width: calc(50% - 12px);
  flex: 0 0 auto;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #2B2E34;
}

.press-item:nth-child(1) {
  border-top: solid 1px #2B2E34;
}

.press-item:nth-child(2) {
  border-top: solid 1px #2B2E34;
}

.press-studies .press-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.press-content {
  width: calc(50% - 12px);
}

.press-studies {
  margin-bottom: 72px;
}

/* FOLIO SECTION */

.folio-section {
  margin-top: 205px;
  margin-bottom: 55px;
}

.leftTextTwoImg .container {
  display: flex;
  justify-content: space-between;
}

.leftTextTwoImg {
  margin-bottom: 24px;
}

.twoImgStack {
  width: calc(50% - 12px);
}

.twoImgStack img:nth-child(1) {
  margin-bottom: 24px;
}

.folioHero {
  width: 100%;
  margin-bottom: 24px;
}

.containerImg {
  margin-bottom: 24px;
}

.containerImg:nth-last-of-type(1) {
  margin-bottom: 72px;
}

.imgLeft .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.imgLeft {
  margin-bottom: 24px;
}

.imgLeft img {
  width: calc(50% - 12px);
}

.imgRight .container {
  display: flex;
  justify-content: flex-end;
}

.imgRight {
  text-align: right;
  margin-bottom: 24px;
}

.imgRight img {
  width: calc(50% - 12px);
}

.twoWideContainer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.twoWideContainerImg {
  width: calc(50% - 12px);
  flex: 0 0 auto;
  margin-bottom: 24px;
}

.whatShort .title-bold {
  margin-bottom: 10px;
}

.whatShort ul {
  margin-bottom: 10px;
}

.folioCase-studies .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.folioCase-studies {
  margin-bottom: 80px;
  margin-top: 80px;
  width: 100%;
  background-color: #ffffe0;
  padding-top: 72px;
  padding-bottom: 72px;
}

.folioCase-studies .title {
  width: 100%;
  margin-bottom: 72px;
}

/* FOOTER */

footer {
  width: 100%;
  display: block;
  margin-bottom: 80px;
}

footer h4 a {
  color: #000;
  border-bottom: solid 1px #000;
}

footer h4 a:hover {
  color: #999;
  border-bottom: solid 1px #999;
  transition: color 300ms linear, border-bottom 300ms linear;
}

.footer-contact {
  margin-bottom: 30px;
}

/* MEDIA SECTION */

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 20px;
  }
  h2 {
    font-size: 44px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  .container {
    padding: 0 40px;
  }
  header {
    height: 132px;
  }
  header .container {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .three {
    display: none;
  }
  .contact-intro .who h4 {
    margin-bottom: 52px;
  }
  .work-item {
    width: calc(50% - 16px);
    margin-right: 24px;
    flex: 0 0 auto;
  }
  .work-item:nth-child(2n+2) {
    margin-right: 0;
  }
  .work-item h4 {
    margin: 18px 0 32px 0;
  }
  .nav-item-no-margin {
    width: calc(50% - 12px);
    flex: 0 0 auto;
  }
  .selector img {
    width: 18px;
  }
  .about-intro {
    margin-bottom: 52px;
  }
  .hero {
    margin-bottom: 52px;
  }
  .leftText {
    margin-bottom: 52px;
  }
  .twoWideImg img {
    margin-bottom: 52px;
  }
  .contact-intro {
    margin-bottom: 52px;
  }
  .news-list {
    margin-bottom: 52px;
  }
  .press-studies {
    margin-bottom: 52px;
  }
  .services-intro {
    margin-bottom: 52px;
  }
  .work-intro {
    margin-bottom: 52px;
  }
  .work-nav {
    margin-bottom: 52px;
  }
  #map {
    margin-bottom: 52px;
  }
  .about {
    margin-bottom: 60px;
  }
  .latest-news {
    padding-top: 52px;
    margin-bottom: 52px;
  }
  .latest-news .title {
    margin-bottom: 52px;
  }
  .news-item {
    margin-bottom: 52px;
  }
  .folioCase-studies {
    margin-top: 52px;
    margin-bottom: 52px;
    padding-top: 52px;
    padding-bottom: 32px;
  }
  .folioCase-studies .title {
    margin-bottom: 52px;
  }
  .about-section {
    margin-top: 159px;
    margin-bottom: 22px;
  }
  .contact-section {
    margin-top: 159px;
    margin-bottom: 22px;
  }
  .news-section {
    margin-top: 159px;
    margin-bottom: 22px;
  }
  .press-section {
    margin-top: 159px;
    margin-bottom: 22px;
  }
  .services-section {
    margin-top: 159px;
    margin-bottom: 22px;
  }
  .work-section {
    margin-top: 159px;
    margin-bottom: 22px;
  }
  .folio-section {
    margin-top: 159px;
    margin-bottom: 22px;
  }
  .menu-list {
    padding-top: 119px;
  }
}

@media (min-width: 1024px) {
  .work-item:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  footer {
    margin-bottom: 32px;
  }
  header {
    height: 92px;
  }
  header .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  header svg {
    width: 207px;
  }
  header nav {
    width: 26px;
    height: 20px;
  }
  header nav button {
    width: 26px;
    height: 20px;
  }
  header nav button span {
    width: 26px;
    height: 2px;
  }
  header nav button span.top-bar {
    top: 0;
  }
  header nav button span.middle-bar {
    top: 9px;
  }
  header nav button span.bottom-bar {
    top: 18px;
  }
  .show-nav header nav button span.top-bar {
    top: 9px;
  }
  .show-nav header nav button span.bottom-bar {
    top: 9px;
  }
  #menu-overlay a:hover {
    border-bottom: solid 2px #fff;
  }
  .menu-list {
    padding-top: 82px;
  }
  .menu-text li {
    margin-bottom: 16px;
  }
  .case-item h4 {
    margin: 16px 0;
  }
  .container {
    padding: 0 24px;
  }
  .about-section {
    margin-top: 119px;
    margin-bottom: 22px;
  }
  .about-intro {
    margin-bottom: 32px;
  }
  .hero {
    margin-bottom: 32px;
  }
  .leftText {
    margin-bottom: 32px;
  }
  .whoLeft {
    width: calc(50% - 12px);
  }
  .twoWideImg img {
    margin-bottom: 32px;
  }
  .contact-section {
    margin-top: 119px;
    margin-bottom: 22px;
  }
  .contact-intro {
    margin-bottom: 32px;
  }
  .contact-intro .who h4 {
    margin-bottom: 32px;
  }
  .news-section {
    margin-top: 119px;
    margin-bottom: 22px;
  }
  .news-list {
    margin-bottom: 32px;
  }
  .news-list-item .container {
    display: block;
  }
  .news-list-item div {
    width: 100%;
  }
  .news-title,
  .news-text {
    margin-bottom: 20px;
  }
  .press-section {
    margin-top: 119px;
    margin-bottom: 22px;
  }
  .press-studies {
    margin-bottom: 32px;
  }
  .services-section {
    margin-top: 119px;
    margin-bottom: 22px;
  }
  .services-intro {
    margin-bottom: 32px;
  }
  .work-section {
    margin-top: 119px;
    margin-bottom: 22px;
  }
  .work-intro {
    margin-bottom: 32px;
  }
  .work-nav {
    margin-bottom: 32px;
  }
  .two-text {
    display: none;
  }
  .work-list-nav p {
    width: calc(50% - 12px);
  }
  .work-list-item p {
    width: calc(50% - 12px);
  }
  .nav-item {
    width: calc(50% - 12px);
    flex: 0 0 auto;
  }
  .nav-item:nth-child(2n+2) {
    margin-right: 0;
  }
  #map {
    height: 60vh;
    margin-bottom: 32px;
  }
  .about {
    height: 60vh;
    margin-bottom: 40px;
  }
  .about video {
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: center center
  }
  .case-studies {
    margin-bottom: 16px;
  }
  .latest-news {
    padding-top: 32px;
    padding-bottom: 0;
    margin-bottom: 32px;
  }
  .latest-news .title {
    margin-bottom: 32px;
  }
  .news-item {
    width: calc(50% - 12px);
    margin-bottom: 32px;
  }
  .folio-section {
    margin-top: 119px;
    margin-bottom: 22px;
  }
  .leftTextTwoImg .container {
    display: block;
  }
  .twoImgStack {
    width: 100%;
  }
  .whoLeftLong {
    width: 100%;
  }
  .imgLeft .container {
    display: block;
  }
  .imgLeft img {
    width: 100%;
  }
  .imgRight .container {
    display: block;
  }
  .imgRight img {
    width: 100%;
  }
  .twoWideContainer .container {
    display: block;
  }
  .twoWideContainerImg {
    width: 100%;
  }
  .folioCase-studies {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-top: 32px;
    padding-bottom: 16px;
  }
  .folioCase-studies .title {
    margin-bottom: 32px;
  }
}

@media (max-width: 550px) {
  .case-item {
    width: 100%;
  }
  .container {
    padding: 0 16px;
  }
  .about-intro .container {
    display: block;
  }
  .who,
  .what {
    width: 100%;
  }
  .who {
    margin-bottom: 32px;
  }
  .whoLeft {
    width: 100%;
  }
  .twoWide {
    display: block;
    margin-bottom: 32px;
  }
  .twoWideImg {
    width: 100%;
  }
  .twoWideImg img {
    margin-bottom: 14px;
  }
  .whoRight {
    width: 100%;
    margin-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .contact-intro .container {
    display: block;
  }
  .wide {
    margin-bottom: 32px;
  }
  .press-item {
    width: 100%;
  }
  .press-content {
    width: 100%;
  }
  .press-item:nth-child(2) {
    border-top: none;
  }
  .press-title {
    margin-bottom: 20px;
  }
  .two {
    display: none;
  }
  .work-item {
    width: 100%;
  }
  .services-intro .container {
    display: block;
  }
  .nav-item-no-margin {
    width: 100%;
  }
  .selector img {
    width: 14px;
  }
  .filters a {
    margin-right: 8px;
  }
  #map {
    height: 40vh;
  }
  .about {
    height: 40vh;
  }
  .news-item {
    width: 100%;
  }
}
