@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Work+Sans:400,300);
@import url(normalize.min.css);
/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
/* Micro ClearFix Mixin */
.cf {
  zoom: 1;
}
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
.force-scrollbar::-webkit-scrollbar {
  -webkit-appearance: none;
}
.force-scrollbar::-webkit-scrollbar:vertical {
  width: 11px;
}
.force-scrollbar::-webkit-scrollbar:horizontal {
  height: 11px;
}
.force-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid white;
  /* should match background, can't be transparent */
  background-color: rgba(0, 0, 0, 0.5);
}
.force-scrollbar::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 8px;
}
.grayfade {
  background: -moz-linear-gradient(top, #f6f5f5 25%, rgba(246, 245, 245, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #f6f5f5), color-stop(100%, rgba(246, 245, 245, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f6f5f5 25%, rgba(246, 245, 245, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f6f5f5 25%, rgba(246, 245, 245, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f6f5f5 25%, rgba(246, 245, 245, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f6f5f5 25%, rgba(246, 245, 245, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f5f5', endColorstr='#00f6f5f5', GradientType=0);
  /* IE6-9 */
}
/* Slider */
.slick-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url('ajax-loader.gif') center center no-repeat;
}
/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('font/slick.eot');
  src: url('font/slick.eot?#iefix') format('embedded-opentype'), url('font/slick.woff') format('woff'), url('font/slick.ttf') format('truetype'), url('font/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #df7763;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
.slick-prev[dir="rtl"] {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
.slick-prev:before[dir="rtl"] {
  content: "→";
}
.slick-next {
  right: -25px;
}
.slick-next[dir="rtl"] {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
.slick-next:before[dir="rtl"] {
  content: "←";
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background: url('../img/bg2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 70% 0;
  color: #fff;
  font-family: "aktiv-grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
}
section {
  overflow: hidden;
}
a {
  color: #fff;
  text-decoration: none;
}
p {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 300;
}
h2 {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 100;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  h2 {
    font-size: 3rem;
  }
}
h2 em {
  color: #df7763;
  font-family: "antique-olive", sans-serif;
  font-weight: 500;
}
h3 {
  font-family: "antique-olive", sans-serif;
  font-size: 2em;
  font-weight: 500;
}
.center {
  text-align: center;
}
.balance-text {
  text-wrap: balanced;
}
@media only screen and (min-width: 600px) {
  .mobbr {
    display: none;
  }
}
.logo {
  position: absolute;
  top: 1rem;
  left: 50%;
  margin-left: -100px;
  width: 200px;
  height: 30px;
  background-image: url(../img/logo-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  /* opacity: .5; */
  /* .laptop({width: 120px; }); */
}
@media only screen and (min-width: 600px) {
  .logo {
    background-image: url(../img/logo-thick.svg);
    margin-left: -50px;
    top: 10%;
    width: 100px;
    height: 100px;
  }
}
.intro {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  height: 95vh;
  min-height: 550px;
  padding-top: 0px;
  text-align: center;
}
.intro:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: #fff;
}
#video-container {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#intro-video {
  min-width: 100%;
  min-height: 100%;
  opacity: .5;
}
.intro-content {
  position: relative;
  width: 90%;
}
.intro-heading {
  margin-bottom: 25px;
  font-size: 3rem;
  font-weight: 200;
  font-family: "antique-olive", sans-serif;
}
@media only screen and (min-width: 600px) {
  .intro-heading {
    font-size: 3.5em;
    margin-bottom: 0.3em;
  }
}
@media only screen and (min-width: 900px) {
  .intro-heading {
    font-size: 4em;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-heading {
    font-size: 5em;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-heading {
    font-size: 6em;
  }
}
.intro-heading-separator {
  display: none;
  margin: 0 .25em;
  vertical-align: middle;
  font-size: .5em;
}
@media only screen and (min-width: 600px) {
  .intro-heading-separator {
    display: inline-block;
    margin-left: .5em;
    margin-right: .5em;
    opacity: 0;
  }
}
.intro-heading-clear {
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 100;
  display: block;
}
@media only screen and (min-width: 600px) {
  .intro-heading-clear {
    display: inline;
  }
}
.intro-heading-clear,
.intro-heading-usable,
.intro-heading-beautiful {
  opacity: 0;
}
.intro-heading-beautiful {
  font-weight: 500;
  display: block;
}
@media only screen and (min-width: 600px) {
  .intro-heading-beautiful {
    display: inline;
  }
}
.intro-separator {
  border: none;
  height: .5em;
  width: 85 %;
  background: url(../img/stripe.svg);
  background-size: cover;
  opacity: 0;
}
@media only screen and (min-width: 600px) {
  .intro-separator {
    width: 51.5em;
  }
}
.intro-text {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  margin-top: 25px;
}
@media only screen and (min-width: 600px) {
  .intro-text {
    font-size: 1.2em;
    margin-top: 2.4em;
  }
}
@media only screen and (max-width: 600px) {
  .intro-text br {
    display: none;
  }
}
.mobile-navi {
  display: none;
}
.mobile-navi ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.mobile-navi li {
  width: 50%;
  border-bottom: 1px solid #f29e90;
  border-left: 1px solid #f29e90;
}
.mobile-navi a {
  color: #fff;
  display: block;
  padding: 3rem 1rem;
  text-align: center;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: 1px;
  font-weight: 300;
  font-family: "aktiv-grotesk", sans-serif;
}
@media only screen and (min-width: 600px) {
  .mobile-navi {
    display: none;
  }
}
.about {
  position: relative;
  min-height: 80vh;
  padding: 5% 5% 0 5%;
  background: #f9f9f6;
  color: #1c1b19;
}
@media only screen and (min-width: 900px) {
  .about {
    background-position: right 0px top 0;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .about.in-view {
    background-position: right 0 top 0;
  }
}
.about:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: #ea6d59;
}
.about:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: #ea6d59;
}
.about-text {
  position: relative;
  z-index: 100;
  margin: 0 auto;
  max-width: 35em;
  text-align: center;
}
.about-text p {
  font-size: .9rem;
  position: relative;
  margin-bottom: 2em;
  font-weight: 500;
}
@media only screen and (min-width: 600px) {
  .about-text p {
    font-weight: 300;
    font-size: 1.1rem;
  }
}
.about-text p:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1.2em;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background-color: #ea6d59;
}
.about-text p:last-child:after {
  content: none;
}
.about-text a {
  color: #1c1b19;
  font-style: italic;
}
.about-text em {
  font-style: normal;
  font-weight: 300;
}
@media only screen and (min-width: 600px) {
  .about-text em {
    color: #6d6961;
  }
}
.about-illustration {
  position: relative;
  z-index: 2;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 200px;
  opacity: 0;
  background-image: url(../img/jusa.png);
  background-position: 50% bottom;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 1s ease;
}
@media only screen and (min-width: 600px) {
  .about-illustration {
    height: 400px;
  }
}
.about-illustration.in-view {
  bottom: 0;
  opacity: 1;
}
.about-extraillus {
  transition: all 1s ease;
  position: absolute;
  bottom: 50px;
  z-index: 1;
  left: 50%;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
}
@media only screen and (min-width: 600px) {
  .about-extraillus {
    width: 200px;
    height: 200px;
    bottom: 150px;
  }
}
.about-extraillus.in-view {
  left: 50%;
  opacity: 1;
}
#aboutillu-20years {
  background-image: url(../img/20years.svg);
  margin-left: -50px;
}
@media only screen and (min-width: 600px) {
  #aboutillu-20years {
    bottom: 130px;
    margin-left: -200px;
  }
}
#aboutillu-20years.in-view {
  margin-left: -150px;
}
@media only screen and (min-width: 600px) {
  #aboutillu-20years.in-view {
    margin-left: -270px;
  }
}
#aboutillu-award {
  background-image: url(../img/award.svg);
  bottom: 35px;
  margin-left: 0px;
}
@media only screen and (min-width: 600px) {
  #aboutillu-award {
    bottom: 110px;
  }
}
#aboutillu-award.in-view {
  margin-left: 50px;
}
.services {
  position: relative;
  min-height: 90vh;
  padding: 3% 5% 8% 5%;
  background: #ea6d59;
}
.services h2 em {
  color: #f29e90;
}
.services:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: #fff;
}
.services:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: #fff;
}
.services-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 600px) {
  .services-list {
    margin-top: 60px;
  }
}
.service {
  width: 100%;
  text-align: center;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  border-top: 0;
  padding: .75em 15px .5em;
  transition: all 0.5s ease-out;
}
@media only screen and (min-width: 600px) {
  .service {
    width: 48%;
  }
}
@media only screen and (min-width: 900px) {
  .service {
    width: 23%;
  }
}
.service svg {
  width: 40%;
  float: left;
}
@media only screen and (min-width: 600px) {
  .service svg {
    float: none;
    width: 80%;
    max-width: 180px;
  }
}
.service p {
  color: #fff;
  width: 50%;
  float: right;
  text-align: left;
  font-size: .9rem;
}
@media only screen and (min-width: 600px) {
  .service p {
    font-size: 1rem;
    text-align: center;
    float: none;
    width: 100%;
  }
}
.service-imperatives {
  position: relative;
}
.service-imperatives:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background-color: #fff;
}
.service h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: left;
  float: right;
  width: 50%;
}
.service h4:after {
  content: '';
  left: 0;
  position: absolute;
  bottom: -20px;
  width: 20px;
  height: 2px;
  background-color: #f29e90;
}
@media only screen and (min-width: 600px) {
  .service h4 {
    margin-bottom: 4rem;
    text-align: center;
    float: none;
    width: 100%;
  }
  .service h4:after {
    left: 50%;
    margin-left: -10px;
  }
}
@media only screen and (min-width: 900px) {
  .service h4 {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .service h4 {
    font-size: 1.8rem;
  }
}
.service-plus {
  display: none;
  position: relative;
  align-items: center;
  color: #f09586;
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  transition: all 1s ease-out;
  opacity: 0;
  transform: translate3D(0, 0, 0);
}
@media only screen and (min-width: 600px) {
  .service-plus {
    display: flex;
    width: 2.666%;
  }
}
.service-plus.plus-deliver {
  transform: translate3D(-30px, 0, 0);
}
.service-plus.in-view {
  opacity: 1;
}
.service-plus.plus-communicate {
  display: none;
}
@media only screen and (min-width: 900px) {
  .service-plus.plus-communicate {
    display: flex;
  }
}
.service-innovation,
.service-design {
  transform: translate3D(50px, 0, 0);
}
.service-innovation.in-view,
.service-design.in-view {
  transform: translate3D(0, 0, 0);
}
.service-deliver,
.service-lead {
  transform: translate3D(50px, 0, 0);
}
@media only screen and (min-width: 600px) {
  .service-deliver,
  .service-lead {
    transform: translate3D(-50px, 0, 0);
  }
}
.service-deliver.in-view,
.service-lead.in-view {
  transform: translate3D(0, 0, 0);
}
.service-outputs {
  margin-top: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .02em;
}
#acme,
#mark {
  opacity: 0;
  transition: all 3s ease;
  transform: translate3D(0, 20px, 0);
}
.in-view #acme,
.in-view #mark {
  opacity: 1;
  transform: translate3D(0, 0, 0);
}
.cases {
  padding: 3% 0 8% 0;
  background: #f9f9f6;
  color: #1c1b19;
  position: relative;
}
.cases h2 {
  margin-bottom: 40px;
}
.cases:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: #ea6d59;
}
.cases:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: #ea6d59;
}
.case-links {
  display: flex;
  flex-wrap: wrap;
  counter-reset: case;
}
.case-link {
  position: relative;
  width: 50%;
  padding: .5%;
  cursor: pointer;
  opacity: .5;
  transition: all .3s ease;
  transition-delay: .05s;
  transform: translate3D(0, 20px, 0);
}
@media only screen and (min-width: 600px) {
  .case-link {
    width: 50%;
  }
}
@media only screen and (min-width: 900px) {
  .case-link {
    width: 33.333%;
  }
}
.case-link:after {
  counter-increment: case;
  content: counter(case);
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  font-family: "antique-olive", sans-serif;
  line-height: 30px;
  border-radius: 15px;
  background-color: #ea6d59;
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -15px;
}
.case-link.in-view {
  opacity: 1;
  transform: translate3D(0, 0, 0);
}
.case-link:hover .case-img {
  opacity: 1;
  filter: grayscale(0%);
}
.case-link:hover .case-link-overlay {
  opacity: .2;
}
.case-link:hover .case-link-title {
  opacity: 0;
}
.case-link-title {
  display: none;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 30%;
  color: #ea6d59;
  transition: opacity .2s linear;
}
.case-link-title h4 {
  font-family: "antique-olive", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.case-link-title h5 {
  margin-top: 0;
  font-weight: 300;
  text-transform: uppercase;
  font-size: .8rem;
  color: #1c1b19;
}
.case-img-container {
  display: inline-block;
  position: relative;
}
.case-link-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ededed;
  opacity: .9;
  transition: opacity .2s linear;
}
@media only screen and (min-width: 600px) {
  .case-link-title,
  .case-link-overlay {
    display: block;
  }
}
.case-img {
  vertical-align: bottom;
  filter: grayscale(100%);
  max-width: 100%;
  opacity: .7;
  transition: opacity .2s linear;
}
.case-cards {
  counter-reset: card;
}
.case-card {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 110;
}
@media only screen and (max-width: 600px) {
  .case-card {
    bottom: 0;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 600px) {
  .case-card {
    top: 10%;
    display: flex;
  }
}
.case-card.case-active {
  opacity: 1;
  pointer-events: auto;
}
.case-card .case-card-img,
.case-card .case-info {
  position: relative;
}
.case-card-overlay {
  pointer-events: none;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f9f9f6;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.case-card-overlay.case-active {
  opacity: .95;
}
.case-card-img {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 600px) {
  .case-card-img {
    width: 70%;
  }
}
.case-card-img img {
  max-width: 100%;
  vertical-align: bottom;
}
.case-extra-imgs {
  padding-bottom: 60px;
  margin-left: -10px;
  margin-right: -10px;
  background-color: #fff;
}
.case-extra-imgs img {
  max-width: 100%;
  margin-bottom: 2rem;
}
.case-info {
  color: #1c1b19;
  text-align: center;
  padding: 60px 10px 80px;
  background-color: #fff;
  position: relative;
}
@media only screen and (min-width: 600px) {
  .case-info {
    width: 30%;
  }
}
.case-info:after {
  counter-increment: card;
  content: counter(card);
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  font-family: "antique-olive", sans-serif;
  line-height: 31px;
  border-radius: 15px;
  background-color: #ea6d59;
  position: absolute;
  top: -15px;
  left: 50%;
  margin-left: -15px;
}
.case-next {
  color: #ea6d59;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 60px;
  padding: 20px;
  color: #fff;
  text-align: center;
  background-color: #ea6d59;
}
@media only screen and (min-width: 600px) {
  .case-next {
    position: absolute;
  }
}
.case-next:after {
  content: 'Next case \2192';
}
.case-next.case-last-close {
  width: 100%;
}
.case-next.case-last-close:after {
  content: 'Close \00d7';
}
.case-close {
  position: fixed;
  width: 20%;
  height: 60px;
  left: 0;
  bottom: 0;
  background-color: #ea6d59;
  border-right: 1px solid #fff;
  font-size: 2rem;
  line-height: 60px;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .case-close {
    position: absolute;
  }
}
.case-close:after {
  content: '\00d7';
}
.case-client {
  font-size: 1.7rem;
  font-family: "antique-olive", sans-serif;
  color: #ea6d59;
  margin: 0;
}
.case-type {
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: .25rem;
  margin-bottom: 40px;
  position: relative;
}
.case-type:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 50px;
  height: 2px;
  margin-left: -25px;
  background-color: #ea6d59;
}
.case-desc {
  padding: 0 10%;
}
.case-client,
.case-type,
.case-desc,
.case-card-img {
  transition: all .3s ease;
  transform: translate3D(0, 20px, 0);
  opacity: 0;
}
.case-type {
  transition-delay: .1s;
}
.case-desc {
  transition-delay: .2s;
}
.case-url a {
  color: #ea6d59;
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: bold;
}
.case-url a:after {
  content: ' \2192';
}
.case-active .case-client,
.case-active .case-type,
.case-active .case-desc,
.case-active .case-card-img {
  transform: translate3D(0, 0, 0);
  opacity: 1;
}
.case-links-inactive .case-link {
  transform: scale(0.7);
  opacity: 0;
}
.smallprint {
  padding: 0 2em;
  line-height: 1.2;
  font-size: 0.9rem;
}
.smallprint b {
  font-size: 0.6rem;
  text-transform: uppercase;
}
.testimonials {
  position: relative;
  background: #ea6d59;
  color: #fff;
  padding: 3% 5% 8% 5%;
  min-height: 90vh;
}
.testimonials:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 13px;
  background-color: #fff;
}
.testimonials h2 em {
  color: #f29e90;
}
.testimonials h2 {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 600px) {
  .testimonials h2 {
    margin-bottom: 6rem;
  }
}
.hero-testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.hero-testimonial {
  width: 100%;
  position: relative;
  min-height: 16em;
  margin-bottom: 4rem;
  padding: 4rem 5em 2em 2em;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media only screen and (min-width: 600px) {
  .hero-testimonial {
    width: 47%;
  }
}
@media only screen and (min-width: 900px) {
  .hero-testimonial {
    width: 40%;
  }
}
.hero-testimonial:before {
  content: '';
  opacity: 0;
  transition: opacity 2s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  background-color: #f67c68;
  background-blend-mode: overlay;
}
.hero-testimonial.in-view:before {
  opacity: .15;
}
.hero-testimonial:after {
  content: '';
  position: absolute;
  top: -10px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background-image: url(../img/quote.svg);
  background-repeat: no-repeat;
}
.cited {
  color: #fac6be;
}
.cited a {
  color: #fac6be;
}
.cited:after {
  content: ' \2192';
}
.hero-testimonial-text {
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
}
.hero-testimonial.kari:before {
  background-image: url(../img/kari-q.jpg);
}
.hero-testimonial.rita:before {
  background-image: url(../img/rita-q.jpg);
}
.hero-testimonial.jani:before {
  background-image: url(../img/jani-q.jpg);
}
.hero-testimonial.henry:before {
  background-image: url(../img/henry-q.jpg);
}
footer {
  background-color: #f9f9f6;
  padding: 50px 0;
  text-align: center;
  font-size: 1.3rem;
  font-family: "antique-olive", sans-serif;
}
@media only screen and (min-width: 600px) {
  footer {
    font-size: 1.5rem;
  }
}
footer a {
  color: #ea6d59;
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.3rem;
  font-weight: bold;
}
@media only screen and (min-width: 600px) {
  footer a {
    font-size: 1.5rem;
    padding: 0 20px;
    font-weight: normal;
  }
}
@media only screen and (min-width: 600px) {
  footer br {
    display: none;
  }
}
footer span {
  display: none;
}
@media only screen and (min-width: 600px) {
  footer span {
    display: inline;
  }
}
a[href^="tel:"]:before {
  content: "\260e";
  margin-right: 0.5em;
}
.footer-detailed {
  margin-top: 20px;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: .8rem;
  line-height: 1.5;
  color: #666;
}
