@font-face {
  font-family: Geomanist;
  src: url(../assets/fonts/Geomanist-Regular.otf);
}

@font-face {
  font-family: GeomanistBold;
  src: url(../assets/fonts/Geomanist-Bold.otf);
}

@font-face {
  font-family: Bison;
  src: url(../assets/fonts/Bison-Bold.ttf);
}

* {
  margin: 0;
  box-sizing: border-box;
  color: #1d1d1d;
}

html, body {
  width: 100%;
  height: auto;
}

body {
  font-family: Geomanist;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

h1 {
  font-family: Bison;
  font-size: 5rem;
  line-height: 4.5rem;
}

h1 span {
  color: #6c00f0;
}

a {
  text-decoration: none;
}

nav {
  background: #fff;
  height: 100px;
  position: fixed;
  padding: 0 5%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  transition: top 0.3s;
  top: 0;
}

nav.visible {
  /* display: none; */
  top: -100px;
  transition: top 0.3s;
}

nav img.logo, footer img.logo {
  width: 120px;
}

nav img.logo {
  cursor: pointer;
}

.nav-menu {
  height: 100vh;
  width: 0%;
  background: #6c00f0;
  color: #fff;
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 0;
  z-index: 9;
  -webkit-transition: background-color 200ms linear;
  -ms-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}

.nav-menu .menu-items {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 100px;
}

.nav-menu h1, .nav-menu h3 {
  color: #fff;
  font-family: bison;
  font-size: 5rem;
  text-decoration: none;
  line-height: 4.5rem;
  cursor: pointer;
}

.nav-menu h1:hover, .nav-menu h3:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav-menu h3 {
  padding-top: 40px;
}

.nav-menu .socials img {
  width: 40px;
  height: 40px;
  margin: 40px 5px;
}

.nav-menu .socials img:nth-child(1) {
  margin-left: 0;
}

.nav-menu .details h2 {
  font-size: 1.2rem;
  font-family: Bison;
  line-height: 1.2rem;
  color: #fff;
}

.nav-menu .socials img:nth-child(3) {
  margin-right: 5px;
}

.nav-menu .socials img:nth-child(2) {
  margin: 40px 5px;
}

section.home {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center
}

.home img.scroll {
  width: 20px;
  position: absolute;
  top: 85%;
  left: 50%;
  object-fit: initial;
}

.home img {
  width: 800px;
  opacity: 0;
  object-fit: cover;
}

/* .home .second, .home .first {
  display: none;
} */
.home .visible {
  display: block;
}

.home .row h1 span.second, .bottom-header span.second {
  color: #ff0b4d;
}

section.bottom-header {
  display: flex;
  justify-content: center;
  margin: 40px;
}

.home h1, .bottom-header h1 {
  font-size: 8rem;
  opacity: 0;
  line-height: 6.5rem;
}

.bottom-header h1 {
  opacity: 1;
}

.home .second h2, .home .row h2, .bottom-header h2 {
  font-family: bison;
  color: #363636;
  font-size: 2.5rem;
  line-height: 2.5rem
}

section.case-studies-grid {
  width: 100%;
  height: auto;
}

.case-studies-grid .wrapper {
  padding: 100px 5%;
}

.case-studies-grid .filters {
  display: flex;
}

.case-studies-grid .filters h2 {
  font-family: bison;
  color: #1d1d1d;
}

.case-studies-grid .filters .filter {
  cursor: pointer;
  opacity: 0.7;
}

.case-studies-grid .filters .filter:hover, .case-studies-grid .filters .filter.active {
  opacity: 1;
}

.grid {
  display: flex;
  flex-wrap: wrap;
}

.grid-item {
  width: 25%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
}

.grid-item .overlay, .wrap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.6);
  display: none;
}

.grid-item .text, .wrap .text {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.grid-item:hover .overlay, .grid-item:hover .text, .wrap:hover .overlay, .wrap:hover .text {
  display: flex;
}

.grid-item h1 {
  font-size: 3rem;
  line-height: 3rem;
  color: #1d1d1d;
}

.wrap h1 {
  font-size: 1.2rem;
  line-height: 1rem;
  color: #1d1d1d;
  text-align: center;
}

.grid-item h3 {
  font-family: bison;
  font-size: 1.5rem;
  color: #6c00f0;
}

.grid-item img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.grid-item:hover img {
  transform: scale(1.1);
}

section.areas {
  height: 100vh;
  position: relative;
}

.areas .area-wrap {
  height: 100%;
  width: 50%;
  padding: 100px 5%;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
}

.video-wrap img:hover {
  transform: scale(1.1);
}

#insight .area-wrap {
  background: #ffe516;
}

#strategy .area-wrap {
  background: #ebcc36;
}

#planning .area-wrap {
  background: #7fffd4;
}

#brand .area-wrap {
  background: #00fa9a;
}

#social .area-wrap {
  background: #00bfff;
}

#digital .area-wrap {
  background: #ff4d07;
}

.areas .left-panel {
  padding-right: 100px;
  width: 80%;
}

/* test */
.area-wrap {
  background: #7fffd4;
  -webkit-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}

.area-wrap.strategy {
  background: #ebcc36;
}

.area-wrap.planning {
  background: #ff4d07;
}

.area-wrap.brand {
  background: #ffe516;
}

.area-wrap.social {
  background: #00fa9a;
}

.area-wrap.digital {
  background: #00bfff;
}

.area-wrap.early {
  background: #ff0b4d;
}

#insight {
  transition: 0.5s;
}

#insight.invisible {
  height: 0%;
}

#strategy, #planning, #brand, #social, #digital, #early {
  height: 0%;
  transition: 0.5s;
}

#strategy.visible, #planning.visible, #brand.visible, #social.visible, #digital.visible, #early.visible {
  height: 100%;
}

/* img#insight {
  margin-left: 20%;
}

img#planning {
  margin-left: 10%;
}

img#digital {
  margin-left: 25%;
} */
/* end of test */
.video-wrap {
  height: 100%;
  overflow: hidden;
  width: 50%;
  margin-left: 50%;
}

.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.areas p {
  margin: 80px 0px;
  font-size: 1.2rem;
  line-height: 2rem;
}

.areas h2 {
  font-family: bison;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.view-case {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px;
  padding-bottom: 5px;
  cursor: pointer;
}

.view-case a {
  text-decoration: none;
  color: #1d1d1d;
  font-family: GeomanistBold;
  font-size: 1.2rem;
}

.area-wrap .view-case img {
  transform: rotate(225deg);
  width: 20px;
}

.anchor {
  position: absolute;
}

.anchor-insight {
  top: 0;
}

.anchor-strategy {
  top: 300px;
}

footer {
  background: #363636;
  color: #1d1d1d;
  padding: 40px 5%;
}

footer a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

footer h1 {
  font-size: 1rem;
  line-height: 1rem;
  color: #fff;
}

footer .contact {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  align-items: center;
}

footer .socials {
  width: 140px;
  display: flex;
  justify-content: space-between;
}

footer .socials img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

footer p {
  font-size: 0.7rem;
  color: #fff;
}

footer a:hover, footer h1.contact:hover {
  color: rgba(255, 255, 255, 0.7);
}

footer .socials img:hover, .nav-menu .socials img:hover {
  opacity: 0.7;
}

footer h1.contact {
  font-size: 2rem;
}

.mobile {
  display: none;
}

.show-more {
  display: none
}

.case-study section.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.case-study.teach-first section.hero {
  background-image: url("../assets/img/insight.jpg");
}

.case-study.sussex-police section.hero {
  background-image: url("../assets/img/sussex-police.jpg");
  background-position-y: -20%;
}

.case-study.axa section.hero {
  background-image: url("../assets/img/AXA.jpg");
}

.case-study.bipolar section.hero {
  background-image: url("../assets/img/bipolar.jpg");
}

.case-study.pandora section.hero {
  background-image: url("../assets/img/pandora.jpg");
}

.case-study.police-now section.hero {
  background-image: url("../assets/img/brand.png");
}

.case-study.refinitiv section.hero {
  background-image: url("../assets/img/digital.png");
}

.case-study.army-experimental section.hero {
  background-image: url("../assets/img/army-experimental.jpg");
}

.case-study.kpmg section.hero {
  background-image: url("../assets/img/kpmg.jpg");
}

.case-study.rbs section.hero {
  background-image: url("../assets/img/rbs.jpg");
}

.case-study.shell section.hero {
  background-image: url("../assets/img/shell.jpg");
}

.case-study.army-11 section.hero {
  background-image: url("../assets/img/army-11.jpg");
}

.case-study.army-freestylers section.hero {
  background-image: url("../assets/img/army-freestylers.jpg");
}

.case-study.barclays section.hero {
  background-image: url("../assets/img/barclays.jpg");
}

.case-study.dentons section.hero {
  background-image: url("../assets/img/dentons.jpg");
}

.case-study.mars section.hero {
  background-image: url("../assets/img/mars.jpg");
}

.case-study.dc section.hero {
  background-image: url("../assets/img/dc.jpg");
}

.case-study .hero-info {
  padding: 15%;
}

img.play {
  width: 80px;
  margin-top: 10px;
  cursor: pointer;
}

.case-study .hero h1 {
  color: #ffe516;
  font-size: 8rem;
  line-height: 6.5rem;
}

.case-study .hero h2 {
  font-family: Bison;
  color: #fff;
  font-size: 2.5rem;
  line-height: 2.5rem;
}

h1.long {
  font-size: 2rem;
  line-height: 2rem;
  text-align: center;
}

.contact-links {
  display: none;
  flex-wrap: wrap;
  width: 700px;
  margin-top: 40px;
}

section.carousel {
  margin: 20px 0 40px;
}

.contact-links.contact-active {
  display: flex;
}

.menu-links.contact-active {
  display: none;
}

.contact-info {
  width: 50%;
}

.contact-links h1 {
  font-size: 3rem;
  line-height: 3rem;
  pointer-events: none;
}

.contact-links h2 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-family: Bison;
}

.nav-menu.contact-active {
  background: #ff0b4d;
}

.nav-menu .awards {
  position: absolute;
  left: 5%;
  top: 100px;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.awards h1 {
  color: #ffe516;
  font-size: 3rem;
  line-height: 3rem;
}

.awards h2 {
  color: #ffe516;
  font-family: Bison;
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.hero-video video {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.hero-video img {
  object-fit: cover;
  width: 100%;
  display: block;
}

section.copy {
  padding: 80px 25% 40px 15%;
}

.copy h2 {
  font-weight: bold;
  font-family: Bison;
  margin-top: 40px;
}

.copy h2+p {
  margin-top: 10px;
}

.copy h4 {
  font-size: 1.2rem;
  font-family: GeomanistBold;
  margin-bottom: 40px;
  line-height: 2rem;
}

.copy h3 {
  font-size: 1rem;
  font-family: GeomanistBold;
  line-height: 1.5rem;
}

.copy p {
  margin-top: 40px;
  line-height: 1.8rem;
}

.copy p:nth-of-type(1) {
  margin-top: 5px;
}

.carousel-wrapper {
  width: 100%;
  height: 600px;
  overflow: auto;
  scroll-behavior: smooth;
  display: flex;
}

.carousel-wrapper.small {
  height: 200px;
}

.carousel-wrapper.vids {
  height: 400px;
}

.carousel-wrapper video {
  height: 100%;
}

.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9, for an aspect ratio of 1:1 change to this value to 100% */
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.carousel-wrapper {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.carousel-wrapper img {
  height: 100%;
  display: block;
  object-fit: cover;
}

section.image {
  width: 100%;
  overflow: hidden;
}

section.image img {
  display: block;
  width: 100%;
}

section.accolades {
  padding: 0 15%;
  margin-bottom: 80px;
}

.accolades h1 {
  color: #ff0b4d;
  margin-top: 20px;
}

.accolades h2 {
  font-family: Bison;
}

.accolades p {
  margin-top: 10px;
}

h1.gold {
  color: #ebcc36;
}

.accolades h1.last {
  margin: 0;
}

.hero-video .hero-info {
  position: absolute;
}

.progress-container {
  width: 70%;
  height: 2px;
  background: #ccc;
  position: relative;
  margin: auto;
  margin-top: 20px;
}

.progress-bar {
  height: 2px;
  background: #cf00f0;
  width: 15%;
  position: absolute;
  left: 0%;
}

.menu-items, .awards {
  opacity: 0;
}

.terms .copy h4, .terms .copy p, .privacy .copy h4, .privacy .copy p {
  margin: 0;
}

.terms .copy h4, .privacy .copy h4 {
  margin: 20px 0 10px;
}

.area-wrap .left-panel h2 {
  display: none;
}

.case-study section.hero.mobile {
  display: none;
}

section.video {
  padding: 40px 10%;
}

section.video video {
  width: 100%;
}

img.back {
  transform: rotate(90deg);
  width: 30px;
  cursor: pointer;
}

img.back:hover {
  opacity: 0.7;
}

.other-case-studies {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.other-case-studies h3, .other-case-studies .wrap {
  width: 25%;
  font-family: bison;
  font-size: 1.2rem;
  /* padding-bottom: 10px; */
  display: none;
  cursor: pointer;
}

.other-case-studies .wrap {
  position: relative;
  width: 33%;
}

.other-case-studies .wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
}

span.lower {
  color: #ff0b4d;
  font-size: 3rem;
}

section.copy.mid {
  padding-top: 0;
}

.case-studies-grid .timeline {
  display: none;
}

.grid-timeline {
  text-align: center;
  margin-bottom: 20px;
  font-family: Bison;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-timeline h2 {
  color: #1d1d1d;
  opacity: 0.7;
}

.grid-timeline h2.active {
  opacity: 1;
}

.grid-timeline h2:hover {
  opacity: 1;
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
  margin: 0 5px;
  pointer-events: none;
  cursor: none;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #6c00f0;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #6c00f0;
}

input:focus+.slider {
  box-shadow: 0 0 1px #6c00f0;
}

input:checked+.slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

.progress-container.vertical {
  position: absolute;
  top: 0;
  width: 100%;
  background: none;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.vertical .progress-bar {
  height: 100%;
  width: 1px;
}

.timeline .text {
  text-align: center;
}

.timeline h1 {
  font-size: 3rem;
  line-height: 3rem;
}

.timeline h3 {
  font-family: bison;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #6c00f0;
}

.timeline-wrapper {
  position: relative;
  height: 570px;
  width: 1020px;
  margin: 40px auto 20px;
}

.timeline-wrapper img {
  position: absolute;
  height: 100%;
  display: block;
  width: 100%;
  object-fit: cover;
}

.timeline-wrapper a {
  display: none;
}

.timeline-wrapper a.active {
  display: block;
}

iframe {
  position: initial;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px;
  /* remove */
}

.blocks {
  display: flex;
  margin-bottom: 20px;
}

.block {
  background: #ccc;
  width: calc(100% / 16);
  height: 10px;
  border: solid 1px #fff;
  -webkit-transition: background-color 200ms linear;
  -ms-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}

.block.active {
  background-color: #363636;
}

.timeline-wrapper img.mobile {
  display: none;
}

.timeline-scroll {
  width: 20px;
  position: absolute;
  margin: 5px auto;
  left: 0;
  right: 0;
}

/* END OF MAIN */
/*  Medium Desktops (desktops, less than 1440px) */
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .home h1 {
    font-size: 6rem;
    line-height: 5rem;
  }

  .home img {
    width: 600px;
  }

  .home .second h2, .home .row h2 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .nav-menu h1, .nav-menu h3 {
    font-size: 3.5rem;
    line-height: 3rem;
  }

  .nav-menu h3 {
    padding-top: 20px;
  }

  .nav-menu .socials img {
    margin: 20px 5px;
  }

  .areas .left-panel {
    padding-right: 60px;
    width: 90%;
  }

  .timeline-wrapper {
    height: 517px;
    width: 920px;
  }
}

/*  Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .home h1, .bottom-header h1 {
    font-size: 5rem;
    line-height: 4rem;
  }

  .home img {
    width: 500px;
  }

  .home .second h2, .home .row h2, .bottom-header h2 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .nav-menu h1, .nav-menu h3 {
    font-size: 4rem;
    line-height: 3.5rem;
  }

  .nav-menu h3 {
    padding-top: 20px;
  }

  .nav-menu .socials img {
    margin: 20px 5px;
  }

  .nav-menu .menu-items {
    height: 100%;
    margin-top: 100px;
  }

  .nav-menu .awards {
    top: 100px;
  }

  .grid-item h1 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .areas .left-panel {
    padding-right: 40px;
    width: 90%;
  }

  .grid-item h3 {
    font-size: 1.2rem;
  }

  .areas p {
    margin: 60px 0;
    font-size: 1rem;
    line-height: 1.8rem;
  }

  .timeline-wrapper {
    height: 450px;
    width: 800px;
  }
}

/*  Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .home h1, h1, .case-study .hero h1, .bottom-header h1 {
    font-size: 4rem;
    line-height: 3.5rem;
  }

  .home .second h2, .home .row h2, .case-study .hero h2, .bottom-header h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .case-study .hero h1 {
    font-size: 5rem;
    line-height: 4rem;
  }

  .case-study .hero h2 {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .home img {
    width: 400px;
  }

  .nav-menu h1, .nav-menu h3 {
    font-size: 3rem;
    line-height: 2.5rem;
  }

  .nav-menu .menu-items {
    height: 100%;
    padding: 100px 0;
    margin-top: 0;
  }

  .nav-menu h3 {
    padding-top: 20px;
  }

  .nav-menu .socials img {
    margin: 20px 5px;
  }

  .nav-menu .awards {
    top: 100px;
  }

  .areas .left-panel {
    padding-right: 0;
    width: 100%;
  }

  .areas p {
    margin: 40px 0;
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .case-study .hero-info {
    padding: 20% 0 0 5%;
  }

  .grid-item h1 {
    font-size: 1.3em;
    line-height: 1.3rem;
  }

  .case-studies-grid .filters h2 {
    font-size: 1.2rem;
  }

  .grid-item h3 {
    font-size: 1rem;
  }

  section.copy {
    padding: 80px 15% 40px 5%;
  }

  section.accolades {
    padding: 0 5%;
    margin-bottom: 80px;
  }

  .case-study section.hero {
    background-position-x: 80%;
  }

  section.video.iframe-vid {
    display: none;
  }

  .other-case-studies h3 {
    width: 30%;
    margin-right: 3%;
    font-size: 1rem;
    line-height: 1rem;
  }

  .wrap:hover .overlay, .wrap:hover .text {
    display: none;
  }

  .timeline-wrapper {
    height: 340px;
    width: 600px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  h1 {
    line-height: 4rem;
  }

  nav img.logo.mobile {
    display: block;
    width: 40px;
  }

  .nav-menu .menu-items {
    padding: 100px 40px 0 27%;
    height: 100%;
    width: 100%;
    margin-top: 0;
    top: 0;
  }

  .nav-menu h1 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .nav-menu .socials img {
    width: 30px;
    height: 30px;
    margin: 20px 0;
  }

  .nav-menu .socials img:nth-child(2) {
    margin: 20px 5px;
  }

  .nav-menu .awards {
    /* flex-direction: row; */
    /* bottom: 20%; */
    width: auto;
    left: 0;
    height: auto;
    padding-left: calc(5%);
    top: 100px;
    align-items: baseline;
  }

  .nav-menu h3 {
    padding-top: 10px;
    font-size: 2rem;
    line-height: 2rem;
  }

  .awards h1 {
    padding-right: 2px;
  }

  .awards h2 {
    padding-right: 10px;
    text-align: left;
  }

  .home .row {
    flex-direction: column;
    justify-content: space-between;
    height: 66%;
    margin-top: 60px;
  }

  .home h1, .bottom-header h1 {
    font-size: 3rem;
    line-height: 2.5rem;
  }

  .home .row h2, .bottom-header h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .home img {
    width: 100%;
    padding: 0 5%;
    margin-top: -10px;
    z-index: -1;
  }

  .case-studies-grid .filters {
    /* display: none; */
    font-size: 0;
  }

  .video-wrap {
    height: 40%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    display: none;
  }

  img#planning {
    margin-left: 0;
  }

  img#brand {
    margin-left: 0;
  }

  img#digital {
    margin-left: 0;
  }

  .areas .area-wrap {
    width: 100%;
    padding: 100px 5%;
    display: flex;
    align-items: baseline;
  }

  .area-wrap h1 {
    font-size: 3rem;
    line-height: 2.5rem;
  }

  .areas p {
    margin: 40px 0;
    font-size: 0.8rem;
    line-height: 1.6rem;
  }

  .areas .left-panel {
    padding-right: 0;
  }

  .view-case a {
    font-size: 1rem;
  }

  section.case-studies-grid {
    height: auto;
  }

  .case-studies-grid .wrapper {
    padding: 40px 5%;
  }

  .grid-item {
    width: 100%;
  }

  .grid-item .overlay {
    display: none;
  }

  .grid-item .text {
    position: initial;
    text-align: center;
    display: block;
    height: auto;
    padding: 15px 0;
  }

  .grid-item h1, .grid-item h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .grid-item.more {
    display: none;
  }

  .show-more {
    display: block;
    width: 100%;
    font-family: bison;
    text-align: center;
    cursor: pointer;
  }

  .grid-item:hover .overlay {
    display: none;
  }

  .grid-item:hover img {
    transform: none;
  }

  .home img.scroll {
    width: 60px;
    position: initial;
    margin-top: 20px;
  }

  footer .contact {
    flex-direction: column;
    align-items: baseline;
    margin: 20px 0 10px;
  }

  footer h1.contact {
    margin: 0;
    margin-top: 10px;
    line-height: 2rem;
  }

  footer .socials {
    margin-top: 10px;
  }

  .case-study section.hero {
    display: none;
  }

  .case-study section.hero.mobile {
    display: block;
    background: none;
    height: auto;
    margin-top: 100px;
  }

  .case-study section.hero.mobile .hero-video {
    display: block;
    height: auto;
    position: relative;
  }

  img.play {
    width: 60px;
    margin: 2%;
    bottom: 0;
    position: absolute;
  }

  .case-study .hero-info {
    padding: 5%;
  }

  .case-study .hero h1 {
    font-size: 4rem;
    line-height: 3.5rem;
  }

  .case-study .hero h2 {
    color: #1d1d1d;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  section.copy {
    padding: 20px 5% 20px 5%;
  }

  .copy h4 {
    font-size: 1rem;
    line-height: 1.8rem;
    margin-bottom: 20px;
  }

  .copy p {
    font-size: 0.8rem;
    line-height: 1.6rem;
  }

  section.accolades {
    padding: 0 5%;
    margin-bottom: 40px;
  }

  .accolades h1 {
    font-size: 4rem;
    line-height: 3.5rem;
  }

  .accolades h2 {
    font-size: 1rem;
  }

  .accolades p {
    font-size: 0.8rem;
  }

  .carousel-wrapper {
    height: 300px;
  }

  .carousel-wrapper.vids {
    height: 200px;
  }

  .carousel-wrapper.small {
    height: 100px;
  }

  section.video.iframe-vid {
    display: none;
  }

  .other-case-studies h3 {
    width: 30%;
    margin-right: 3%;
    font-size: 1rem;
    line-height: 1rem;
  }

  .other-case-studies .wrap {
    /* margin-bottom: 40px; */
  }

  .wrap .overlay, .wrap .text {
    display: none;
    /* bottom: -40px; */
    top: auto;
    align-items: baseline;
  }

  .wrap .text {
    height: auto;
    width: 90%;
    margin-bottom: 0;
  }

  .wrap .overlay {
    background: rgba(255, 255, 255, 0.7);
    display: none;
  }

  .wrap:hover .overlay, .wrap:hover .text {
    display: none;
  }

  .wrap h1 {
    font-size: 0.7rem;
    line-height: 1rem;
    text-align: left;
  }

  /* .grid-timeline {
    display: none;
  } */
  .timeline-wrapper {
    position: relative;
    height: 480px;
    width: 256px;
    margin: 0px auto 20px;
  }

  .timeline h1 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .timeline h3 {
    font-family: bison;
    font-size: 1rem;
    line-height: 1rem;
    color: #6c00f0;
  }

  .timeline-wrapper img {
    display: none;
  }

  .timeline-wrapper img.mobile {
    display: block;
  }
}