@import url("https://fonts.googleapis.com/css?family=Arimo:400,700|Space+Mono:400,700&display=swap");
/* ############################################################ */
/* opinionated defaults for CSS */
/* line 3, _sass/_defaults.scss */
html {
  box-sizing: border-box;
  font-size: 16px;
}

/* line 7, _sass/_defaults.scss */
*, *:before, *:after {
  box-sizing: inherit;
}

/* line 10, _sass/_defaults.scss */
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* line 15, _sass/_defaults.scss */
ol, ul {
  list-style: none;
}

/* line 19, _sass/_defaults.scss */
img {
  max-width: 100%;
  height: auto;
  margin-bottom: -3px;
}

/* line 24, _sass/_defaults.scss */
a {
  text-decoration: none;
  transition: all 260ms ease-in-out;
}

/* line 28, _sass/_defaults.scss */
button {
  cursor: pointer;
  transition: all 260ms ease-in-out;
}

/* ############################################################ */
/* main content wrappers */
/* line 35, _sass/_defaults.scss */
body {
  background: #9b9b9b;
  color: #333333;
  font-family: "Arimo", sans-serif;
  font-size: 16px;
}

/* line 41, _sass/_defaults.scss */
main {
  position: relative;
  background: #F5F5F5;
}

/* line 2, _sass/_form.scss */
form button {
  border: none;
  display: flex;
  font-size: 16px;
  line-height: 56px;
  width: calc(100%/4);
  display: block;
  margin-top: 28px;
  float: right;
  white-space: nowrap;
  background: #fff;
}

/* line 14, _sass/_form.scss */
form button img {
  width: 36px;
  margin-left: 18px;
  transition: all 260ms ease-in-out;
}

/* line 20, _sass/_form.scss */
form button:hover img {
  transform: translateX(10px);
}

@media screen and (max-width: 900px) {
  /* line 2, _sass/_form.scss */
  form button {
    width: auto;
  }
}

/* line 29, _sass/_form.scss */
fieldset {
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
}

/* line 35, _sass/_form.scss */
input {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #000000;
  font-size: 30px;
  line-height: 56px;
  color: #F5F5F5;
  outline: none;
  margin-bottom: 56px;
}

/* line 48, _sass/_form.scss */
input::placeholder {
  color: transparent;
}

/* line 51, _sass/_form.scss */
input + label {
  position: absolute;
  top: 12px;
  color: #9b9b9b;
  font-size: 30px;
  height: 56px;
  transition: all 260ms ease-in-out;
}

/* line 59, _sass/_form.scss */
input:focus {
  color: #F5F5F5;
  border-color: #F5F5F5;
}

/* line 69, _sass/_form.scss */
textarea {
  display: block;
  width: 100%;
  background: transparent url("/assets/img/line.400x56.png") 1px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #000000;
  font-size: 30px;
  line-height: 56px;
  color: #F5F5F5;
  outline: none;
  height: 166px;
}

/* line 83, _sass/_form.scss */
textarea + label {
  position: absolute;
  top: 12px;
  color: #9b9b9b;
  font-size: 30px;
  height: 56px;
  transition: all 260ms ease-in-out;
}

/* line 93, _sass/_form.scss */
input:valid + label, textarea:valid + label {
  top: -18px;
  font-size: 14px;
}

/* invalid */
/* line 99, _sass/_form.scss */
input:not(:placeholder-shown) {
  color: #FF4949;
  border-color: #FF4949;
}

/* line 102, _sass/_form.scss */
input:not(:placeholder-shown) + label {
  top: -18px;
  font-size: 14px;
  color: #FF4949;
}

/* line 108, _sass/_form.scss */
input:valid {
  color: #F5F5F5;
  border-color: #F5F5F5;
}

/* line 111, _sass/_form.scss */
input:valid + label {
  color: #9b9b9b;
}

/* ############################################################ */
/* global nav bar */
/* line 3, _sass/_nav.scss */
nav {
  position: absolute;
  z-index: 99999;
  top: 56px;
  left: 112px;
  width: calc(100% - 224px);
}

@media screen and (max-width: 900px) {
  /* line 3, _sass/_nav.scss */
  nav {
    width: calc(100% - 112px);
    top: 28px;
    left: 56px;
  }
}

/* line 15, _sass/_nav.scss */
nav ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: flex-end;
}

/* line 19, _sass/_nav.scss */
nav ul li:first-child {
  grid-column: 1 / span 7;
}

/* line 21, _sass/_nav.scss */
nav ul li:first-child img {
  width: calc(100%/7 * 2);
  min-width: 224px;
}

@media screen and (max-width: 900px) {
  /* line 21, _sass/_nav.scss */
  nav ul li:first-child img {
    min-width: 168px;
  }
}

/* line 31, _sass/_nav.scss */
nav ul li a {
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
  padding: 0 28px 0 0;
}

/* mobile */
@media screen and (max-width: 600px) {
  /* line 43, _sass/_nav.scss */
  nav {
    background: #333333 url("/assets/img/logo.icon.white.svg") no-repeat 28px 28px;
    background-size: 64px 44px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 100%;
    padding: 28px;
    display: flex;
    align-items: center;
    transition: all 260ms ease-in-out;
  }
  /* line 57, _sass/_nav.scss */
  nav ul {
    display: block;
    width: 100%;
  }
  /* line 60, _sass/_nav.scss */
  nav ul li:first-child {
    display: none;
  }
  /* line 63, _sass/_nav.scss */
  nav ul li a {
    display: block;
    width: 100%;
    font-size: 40px;
    line-height: 80px;
    color: #F5F5F5;
  }
  /* line 72, _sass/_nav.scss */
  .nav--mobile--logo {
    background: url("/assets/img/logo.icon.black.svg") no-repeat 0 0;
    background-size: contain;
    position: fixed;
    z-index: 99999;
    top: 28px;
    left: 28px;
    width: 64px;
    height: 44px;
  }
  /* line 82, _sass/_nav.scss */
  .nav--mobile--toggle {
    position: fixed;
    z-index: 999999;
    top: 38px;
    right: 28px;
    width: 30px;
    height: 24px;
    cursor: pointer;
  }
  /* line 90, _sass/_nav.scss */
  .nav--mobile--toggle.off {
    border-top: 2px solid #333333;
  }
  /* line 93, _sass/_nav.scss */
  .nav--mobile--toggle.off:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 2px);
    width: 100%;
    height: 2px;
    background: #333333;
    transition: transform 260ms ease-in-out;
  }
  /* line 103, _sass/_nav.scss */
  .nav--mobile--toggle.off:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #333333;
    transition: transform 260ms ease-in-out;
  }
  /* line 112, _sass/_nav.scss */
  .nav--mobile--toggle.off + nav {
    pointer-events: none;
    opacity: 0;
  }
  /* line 119, _sass/_nav.scss */
  .nav--mobile--toggle.on:before {
    content: '';
    position: absolute;
    top: 12px;
    width: 100%;
    height: 2px;
    background: #F5F5F5;
    transform: rotate(-45deg);
    transition: transform 260ms ease-in-out;
  }
  /* line 129, _sass/_nav.scss */
  .nav--mobile--toggle.on:after {
    content: '';
    position: absolute;
    top: 12px;
    width: 100%;
    height: 2px;
    background: #F5F5F5;
    transform: rotate(45deg);
    transition: transform 260ms ease-in-out;
  }
  /* line 139, _sass/_nav.scss */
  .nav--mobile--toggle.on + nav {
    pointer-events: all;
    transform: translateX(0%);
    opacity: 1;
  }
}

/* page specifics */
@media screen and (min-width: 1281px) {
  /* line 149, _sass/_nav.scss */
  main.team nav ul li a {
    color: #F5F5F5;
  }
}

/* ############################################################ */
/* primary type, common content tags */
/* line 3, _sass/_type.scss */
h1 {
  font-family: "Space Mono", monospace;
  font-size: 72px;
  line-height: 80px;
  margin: 0 0 56px;
}

@media screen and (max-width: 1280px) {
  /* line 3, _sass/_type.scss */
  h1 {
    font-size: 60px;
    line-height: 68px;
  }
}

@media screen and (max-width: 900px) {
  /* line 3, _sass/_type.scss */
  h1 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media screen and (max-width: 600px) {
  /* line 3, _sass/_type.scss */
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
}

/* line 21, _sass/_type.scss */
h2 {
  position: relative;
  font-size: 36px;
  line-height: 43px;
  margin-bottom: 28px;
}

/* line 26, _sass/_type.scss */
h2:before {
  content: '';
  position: absolute;
  top: -56px;
  left: 0;
  height: 28px;
  border-left: 2px solid #000000;
}

@media screen and (max-width: 1280px) {
  /* line 21, _sass/_type.scss */
  h2 {
    font-size: 30px;
    line-height: 38px;
  }
}

@media screen and (max-width: 600px) {
  /* line 21, _sass/_type.scss */
  h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

/* line 43, _sass/_type.scss */
h3 {
  font-size: 36px;
}

@media screen and (max-width: 600px) {
  /* line 43, _sass/_type.scss */
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
}

/* line 50, _sass/_type.scss */
p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 56px;
}

@media screen and (max-width: 600px) {
  /* line 50, _sass/_type.scss */
  p {
    font-size: 15px;
    line-height: 20px;
  }
}

/* line 59, _sass/_type.scss */
p a {
  color: #000000;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  width: auto;
}

/* line 65, _sass/_type.scss */
p a img {
  width: 36px;
  margin-left: 18px;
  transition: all 260ms ease-in-out;
}

/* line 70, _sass/_type.scss */
p a:hover img {
  transform: translateX(10px);
}

/* ############################################################ */
/* heros... top of pages */
/* line 3, _sass/_hero.scss */
.hero, .hero--cases, .hero--team, .hero--contact {
  background: url("/assets/img/bg/Home.png") 50% 50%;
  background-size: cover;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 168px 112px;
  /* home page specific */
}

@media screen and (max-width: 900px) {
  /* line 3, _sass/_hero.scss */
  .hero, .hero--cases, .hero--team, .hero--contact {
    padding: 112px 56px;
  }
}

@media screen and (max-width: 600px) {
  /* line 3, _sass/_hero.scss */
  .hero, .hero--cases, .hero--team, .hero--contact {
    padding: 112px 28px;
  }
}

/* line 14, _sass/_hero.scss */
.hero > div:first-child, .hero--cases > div:first-child, .hero--team > div:first-child, .hero--contact > div:first-child {
  position: relative;
  z-index: 99999;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

@media screen and (max-width: 900px) {
  /* line 14, _sass/_hero.scss */
  .hero > div:first-child, .hero--cases > div:first-child, .hero--team > div:first-child, .hero--contact > div:first-child {
    display: block;
  }
}

/* line 23, _sass/_hero.scss */
.hero h1, .hero--cases h1, .hero--team h1, .hero--contact h1 {
  grid-column: 1 / span 8;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  /* line 23, _sass/_hero.scss */
  .hero h1, .hero--cases h1, .hero--team h1, .hero--contact h1 {
    grid-column: 1 / span 10;
  }
}

/* line 30, _sass/_hero.scss */
.hero h2, .hero--cases h2, .hero--team h2, .hero--contact h2 {
  top: 28px;
  grid-column: 7 / span 4;
  grid-row: 2;
}

@media screen and (max-width: 1200px) {
  /* line 30, _sass/_hero.scss */
  .hero h2, .hero--cases h2, .hero--team h2, .hero--contact h2 {
    top: 112px;
    grid-column: 2 / span 6;
  }
}

@media screen and (max-width: 900px) {
  /* line 30, _sass/_hero.scss */
  .hero h2, .hero--cases h2, .hero--team h2, .hero--contact h2 {
    top: 74.6666666667px;
    margin-bottom: 168px;
  }
}

@media screen and (max-width: 600px) {
  /* line 30, _sass/_hero.scss */
  .hero h2, .hero--cases h2, .hero--team h2, .hero--contact h2 {
    margin-bottom: 0;
  }
}

/* line 46, _sass/_hero.scss */
.hero .bg, .hero--cases .bg, .hero--team .bg, .hero--contact .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: 100%;
  /*
        opacity: 0;
        animation: fadeIn;
        animation-delay: 1s;
        animation-duration: 520ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
        animation-timing-function: ease-in-out;
*/
}

/* line 62, _sass/_hero.scss */
.hero .bg video, .hero--cases .bg video, .hero--team .bg video, .hero--contact .bg video {
  object-fit: cover;
  max-width: 100%;
}

@media screen and (min-width: 769px) {
  /* line 68, _sass/_hero.scss */
  .hero#intro, .hero--cases#intro, .hero--team#intro, .hero--contact#intro {
    background-image: none;
  }
}

@media screen and (max-width: 768px) {
  /* line 73, _sass/_hero.scss */
  .hero#intro .bg, .hero--cases#intro .bg, .hero--team#intro .bg, .hero--contact#intro .bg {
    display: none;
  }
}

/* line 78, _sass/_hero.scss */
.hero--cases, .hero--cases--cases, .hero--team--cases, .hero--contact--cases {
  background: #d8d8d8;
  overflow: hidden;
}

/* line 81, _sass/_hero.scss */
.hero--cases > .bg, .hero--cases--cases > .bg, .hero--team--cases > .bg, .hero--contact--cases > .bg {
  background: url("/assets/img/product.cases.001.png") no-repeat 0 65%;
  background-size: 55%;
  height: 100%;
}

@media screen and (max-width: 900px) {
  /* line 81, _sass/_hero.scss */
  .hero--cases > .bg, .hero--cases--cases > .bg, .hero--team--cases > .bg, .hero--contact--cases > .bg {
    background-position: 0% 100%;
    background-size: 88%;
    transform: none !important;
  }
}

@media screen and (max-width: 900px) {
  /* line 78, _sass/_hero.scss */
  .hero--cases, .hero--cases--cases, .hero--team--cases, .hero--contact--cases {
    background-position: 50% 100%;
    background-size: 100%;
  }
}

/* line 95, _sass/_hero.scss */
.hero--cases img, .hero--cases--cases img, .hero--team--cases img, .hero--contact--cases img {
  grid-column: 1 / span 6;
  width: 100%;
}

/* line 99, _sass/_hero.scss */
.hero--cases h1, .hero--cases--cases h1, .hero--team--cases h1, .hero--contact--cases h1 {
  grid-column: 8 / span 5;
}

/* line 102, _sass/_hero.scss */
.hero--cases h2, .hero--cases--cases h2, .hero--team--cases h2, .hero--contact--cases h2 {
  top: 112px;
  grid-column: 8 / span 4;
}

@media screen and (max-width: 600px) {
  /* line 102, _sass/_hero.scss */
  .hero--cases h2, .hero--cases--cases h2, .hero--team--cases h2, .hero--contact--cases h2 {
    margin-bottom: 168px;
  }
}

/* line 110, _sass/_hero.scss */
.hero--team, .hero--cases--team, .hero--team--team, .hero--contact--team {
  /* this little bit of tom-foolery ensures the hero image holds the grid */
  background: #d8d8d8 url("/assets/img/bg.team.003.jpg") no-repeat 100% 100%;
  background-size: 66.666666%;
  background-size: contain;
  /* the size of that bg image depends on what happens next */
  /* fit the rest on the grid */
}

/* line 115, _sass/_hero.scss */
.hero--team:after, .hero--cases--team:after, .hero--team--team:after, .hero--contact--team:after {
  content: '';
  position: absolute;
  left: 112px;
  top: 0;
  height: 100%;
  width: calc(33.333333% - 74.6666666667px);
  background: #d8d8d8;
}

@media screen and (max-width: 1600px) {
  /* line 110, _sass/_hero.scss */
  .hero--team, .hero--cases--team, .hero--team--team, .hero--contact--team {
    background: #d8d8d8 url("/assets/img/bg.team.003.jpg") no-repeat 100% 100%;
    background-position: 112px 50%;
    background-size: cover;
  }
}

@media screen and (max-width: 1280px) {
  /* line 110, _sass/_hero.scss */
  .hero--team, .hero--cases--team, .hero--team--team, .hero--contact--team {
    background-position: 50% 50%;
    background-size: cover;
  }
  /* line 133, _sass/_hero.scss */
  .hero--team:after, .hero--cases--team:after, .hero--team--team:after, .hero--contact--team:after {
    left: 0;
    width: 100%;
    opacity: 0.6;
  }
}

@media screen and (max-width: 600px) {
  /* line 110, _sass/_hero.scss */
  .hero--team, .hero--cases--team, .hero--team--team, .hero--contact--team {
    background-image: none;
  }
}

/* line 143, _sass/_hero.scss */
.hero--team h1, .hero--cases--team h1, .hero--team--team h1, .hero--contact--team h1 {
  grid-column: 1 / span 4;
}

@media screen and (max-width: 1280px) {
  /* line 143, _sass/_hero.scss */
  .hero--team h1, .hero--cases--team h1, .hero--team--team h1, .hero--contact--team h1 {
    grid-column: 1 / span 8;
  }
}

/* line 149, _sass/_hero.scss */
.hero--team h2, .hero--cases--team h2, .hero--team--team h2, .hero--contact--team h2 {
  top: 112px;
  grid-column: 1 / span 3;
}

@media screen and (max-width: 1280px) {
  /* line 149, _sass/_hero.scss */
  .hero--team h2, .hero--cases--team h2, .hero--team--team h2, .hero--contact--team h2 {
    grid-column: 1 / span 6;
  }
}

/* line 157, _sass/_hero.scss */
.hero--contact, .hero--cases--contact, .hero--team--contact, .hero--contact--contact {
  background: #d8d8d8;
}

/* line 159, _sass/_hero.scss */
.hero--contact > div, .hero--cases--contact > div, .hero--team--contact > div, .hero--contact--contact > div {
  grid-template-rows: auto auto;
  align-items: center;
}

/* line 163, _sass/_hero.scss */
.hero--contact h1, .hero--cases--contact h1, .hero--team--contact h1, .hero--contact--contact h1 {
  grid-column: 1 / span 4;
}

@media screen and (max-width: 1280px) {
  /* line 163, _sass/_hero.scss */
  .hero--contact h1, .hero--cases--contact h1, .hero--team--contact h1, .hero--contact--contact h1 {
    grid-column: 1 / span 6;
  }
}

@media screen and (max-width: 900px) {
  /* line 163, _sass/_hero.scss */
  .hero--contact h1, .hero--cases--contact h1, .hero--team--contact h1, .hero--contact--contact h1 {
    margin-top: 56px;
  }
}

/* line 172, _sass/_hero.scss */
.hero--contact h2, .hero--cases--contact h2, .hero--team--contact h2, .hero--contact--contact h2 {
  grid-column: 2 / span 4;
  grid-row: 2 / span 1;
}

@media screen and (max-width: 1280px) {
  /* line 172, _sass/_hero.scss */
  .hero--contact h2, .hero--cases--contact h2, .hero--team--contact h2, .hero--contact--contact h2 {
    top: 0;
    grid-column: 1 / span 6;
  }
}

@media screen and (max-width: 900px) {
  /* line 172, _sass/_hero.scss */
  .hero--contact h2, .hero--cases--contact h2, .hero--team--contact h2, .hero--contact--contact h2 {
    top: 112px;
  }
}

@media screen and (max-width: 600px) {
  /* line 172, _sass/_hero.scss */
  .hero--contact h2, .hero--cases--contact h2, .hero--team--contact h2, .hero--contact--contact h2 {
    margin-bottom: 168px;
  }
}

/* line 187, _sass/_hero.scss */
.hero--contact form, .hero--cases--contact form, .hero--team--contact form, .hero--contact--contact form {
  grid-column: 8 / span 4;
  grid-row: 1 / span 2;
}

/* line 194, _sass/_hero.scss */
.hero--scrollTo {
  position: fixed;
  z-index: 99999;
  top: calc(50% - 56px);
  right: 112px;
  animation: none !important;
  transition: all 520ms ease-in-out;
}

/* line 201, _sass/_hero.scss */
.hero--scrollTo ul {
  text-align: right;
}

/* line 203, _sass/_hero.scss */
.hero--scrollTo ul li {
  position: relative;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  line-height: 28px;
  width: 100%;
  height: 28px;
  cursor: pointer;
  transition: all 260ms ease-in-out;
}

/* line 212, _sass/_hero.scss */
.hero--scrollTo ul li a {
  color: #000000;
  height: 100%;
  display: block;
  padding-right: 48px;
}

/* line 217, _sass/_hero.scss */
.hero--scrollTo ul li a span {
  opacity: 0;
  transition: all 260ms ease-in-out;
}

/* line 221, _sass/_hero.scss */
.hero--scrollTo ul li a:after {
  position: absolute;
  top: 14px;
  right: 0;
  content: '';
  background: #9b9b9b;
  display: block;
  width: 20px;
  height: 2px;
  transition: all 260ms ease-in-out;
}

/* line 234, _sass/_hero.scss */
.hero--scrollTo ul li:hover a, .hero--scrollTo ul li.on a {
  padding-right: 56px;
}

/* line 236, _sass/_hero.scss */
.hero--scrollTo ul li:hover a span, .hero--scrollTo ul li.on a span {
  opacity: 0.5;
}

/* line 239, _sass/_hero.scss */
.hero--scrollTo ul li:hover a:after, .hero--scrollTo ul li.on a:after {
  background: #000000;
  width: 28px;
}

/* line 247, _sass/_hero.scss */
.hero--scrollTo ul li.on a span {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  /* line 194, _sass/_hero.scss */
  .hero--scrollTo {
    right: 28px;
  }
}

@media screen and (max-width: 600px) {
  /* line 194, _sass/_hero.scss */
  .hero--scrollTo {
    display: none;
  }
}

/* line 262, _sass/_hero.scss */
.hero--scroll {
  position: fixed;
  z-index: 9999;
  right: 112px;
  bottom: 28px;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  animation: none !important;
  transition: all 520ms ease-in-out;
  transform-origin: 100% 0%;
  transform: rotate(90deg);
}

/* line 274, _sass/_hero.scss */
.hero--scroll img {
  width: 36px;
  margin-left: 18px;
  transition: all 260ms ease-in-out;
}

@media screen and (max-width: 1200px) {
  /* line 262, _sass/_hero.scss */
  .hero--scroll {
    right: 28px;
  }
}

/* line 287, _sass/_hero.scss */
.hero--scroll:hover img {
  transform: translateX(10px);
}

/* fade ins */
/* line 293, _sass/_hero.scss */
[class*='hero'] {
  opacity: 0;
  animation: fadeIn;
  animation-delay: 300ms;
  animation-duration: 520ms;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

/* line 301, _sass/_hero.scss */
[class*='hero'] > * {
  opacity: 0;
  animation: fadeIn;
  animation-delay: 1s;
  animation-duration: 520ms;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(1) {
  animation-delay: 500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(2) {
  animation-delay: 1000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(3) {
  animation-delay: 1500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(4) {
  animation-delay: 2000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(5) {
  animation-delay: 2500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(6) {
  animation-delay: 3000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(7) {
  animation-delay: 3500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(8) {
  animation-delay: 4000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(9) {
  animation-delay: 4500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(10) {
  animation-delay: 5000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(11) {
  animation-delay: 5500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(12) {
  animation-delay: 6000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(13) {
  animation-delay: 6500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(14) {
  animation-delay: 7000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(15) {
  animation-delay: 7500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(16) {
  animation-delay: 8000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(17) {
  animation-delay: 8500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(18) {
  animation-delay: 9000ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(19) {
  animation-delay: 9500ms;
}

/* line 310, _sass/_hero.scss */
[class*='hero'] > *:nth-of-type(20) {
  animation-delay: 10000ms;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ############################################################ */
/* highlight components... callouts for blocks of unique content */
/* line 3, _sass/_highlight.scss */
[class*='highlight'] {
  position: relative;
  padding: 0 112px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

@media screen and (max-width: 600px) {
  /* line 3, _sass/_highlight.scss */
  [class*='highlight'] {
    padding: 0 28px;
    display: block;
  }
  /* line 11, _sass/_highlight.scss */
  [class*='highlight'] > div:nth-of-type(2) {
    display: none;
  }
}

/* line 15, _sass/_highlight.scss */
[class*='highlight'] header {
  grid-column: span 12;
}

/* line 18, _sass/_highlight.scss */
[class*='highlight'] h1 {
  grid-column: span 2;
  margin: 112px 0;
}

@media screen and (max-width: 1020px) {
  /* line 18, _sass/_highlight.scss */
  [class*='highlight'] h1 {
    margin: 56px 0;
  }
}

@media screen and (max-width: 600px) {
  /* line 18, _sass/_highlight.scss */
  [class*='highlight'] h1 {
    padding-bottom: 28px;
  }
}

/* line 28, _sass/_highlight.scss */
[class*='highlight'] > div {
  padding-bottom: 112px;
}

@media screen and (max-width: 1020px) {
  /* line 31, _sass/_highlight.scss */
  [class*='highlight'] > div:not(:last-child) {
    padding: 0;
  }
}

@media screen and (max-width: 600px) {
  /* line 28, _sass/_highlight.scss */
  [class*='highlight'] > div {
    padding-bottom: 0;
  }
}

/* line 39, _sass/_highlight.scss */
[class*='highlight'] > div:first-child {
  grid-column: 1 / span 5;
}

/* line 42, _sass/_highlight.scss */
[class*='highlight'] > div:last-child {
  grid-column: 7 / span 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* line 46, _sass/_highlight.scss */
[class*='highlight'] > div:last-child > div {
  margin-right: 28px;
}

@media screen and (max-width: 1020px) {
  /* line 42, _sass/_highlight.scss */
  [class*='highlight'] > div:last-child {
    display: block;
  }
  /* line 51, _sass/_highlight.scss */
  [class*='highlight'] > div:last-child > div {
    margin-right: 0;
    display: block;
  }
  /* line 55, _sass/_highlight.scss */
  [class*='highlight'] > div:last-child p {
    margin-bottom: 112px;
  }
}

@media screen and (min-width: 601px) {
  /* line 61, _sass/_highlight.scss */
  [class*='highlight']:not(:nth-of-type(1)) > div {
    border-top: 2px solid #000000;
  }
}

@media screen and (max-width: 600px) {
  /* line 60, _sass/_highlight.scss */
  [class*='highlight']:not(:nth-of-type(1)) {
    border-top: 2px solid #000000;
  }
}

/* line 73, _sass/_highlight.scss */
.highlight--products {
  background: #F5F5F5 url("/assets/img/product.home.001.png") no-repeat 0 80%;
  background-size: 50%;
  z-index: 1;
  align-items: flex-start;
}

@media screen and (max-width: 900px) {
  /* line 73, _sass/_highlight.scss */
  .highlight--products {
    background: none;
  }
  /* line 80, _sass/_highlight.scss */
  .highlight--products > div {
    grid-column: 1 / span 12 !important;
  }
}

@media screen and (max-width: 600px) {
  /* line 85, _sass/_highlight.scss */
  .highlight--products > div > div {
    display: block;
  }
}

/* line 89, _sass/_highlight.scss */
.highlight--products header {
  margin-bottom: 10vw;
}

@media screen and (max-width: 600px) {
  /* line 89, _sass/_highlight.scss */
  .highlight--products header {
    margin-bottom: 112px;
  }
}

/* line 95, _sass/_highlight.scss */
.highlight--products > div {
  border: none !important;
}

@media screen and (max-width: 600px) {
  /* line 95, _sass/_highlight.scss */
  .highlight--products > div {
    padding-bottom: 0;
  }
  /* line 99, _sass/_highlight.scss */
  .highlight--products > div > div {
    padding-bottom: 56px !important;
  }
  /* line 102, _sass/_highlight.scss */
  .highlight--products > div p {
    margin-bottom: 28px !important;
  }
}

@media screen and (max-width: 900px) {
  /* line 107, _sass/_highlight.scss */
  .highlight--products > div:last-child {
    grid-template-columns: 1fr 1fr;
  }
}

/* ############################################################ */
/* grid layouts... sets of consistent blocks */
/* line 3, _sass/_grid.scss */
[class*='grid'] {
  position: relative;
  z-index: 1;
  padding: 168px 112px;
  padding-bottom: 56px;
}

@media screen and (max-width: 900px) {
  /* line 3, _sass/_grid.scss */
  [class*='grid'] {
    padding: 112px 56px;
  }
}

@media screen and (max-width: 600px) {
  /* line 3, _sass/_grid.scss */
  [class*='grid'] {
    padding: 112px 28px;
  }
}

/* line 8, _sass/_grid.scss */
[class*='grid'] h2 {
  margin-top: 112px;
}

/* line 11, _sass/_grid.scss */
[class*='grid'] > div, [class*='grid'] > ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

/* line 14, _sass/_grid.scss */
[class*='grid'] > div > *, [class*='grid'] > ul > * {
  grid-column: span 4;
  padding-right: calc(100%/4 + 28px);
}

@media screen and (max-width: 1280px) {
  /* line 14, _sass/_grid.scss */
  [class*='grid'] > div > *, [class*='grid'] > ul > * {
    grid-column: span 6;
  }
}

@media screen and (max-width: 600px) {
  /* line 14, _sass/_grid.scss */
  [class*='grid'] > div > *, [class*='grid'] > ul > * {
    grid-column: span 12;
    padding: 0;
  }
}

/* line 30, _sass/_grid.scss */
.grid--cases > ul > li {
  position: relative;
  display: block;
  grid-column: span 3;
  width: calc(100% - 28px);
  margin-bottom: 28px;
  padding: 0;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
}

/* line 38, _sass/_grid.scss */
.grid--cases > ul > li h3 {
  font-size: 32px;
}

@media screen and (max-width: 1440px) {
  /* line 30, _sass/_grid.scss */
  .grid--cases > ul > li {
    grid-column: span 4;
  }
  /* line 43, _sass/_grid.scss */
  .grid--cases > ul > li h3 {
    font-size: 28px;
    line-height: 34px;
  }
  /* line 47, _sass/_grid.scss */
  .grid--cases > ul > li p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1020px) {
  /* line 30, _sass/_grid.scss */
  .grid--cases > ul > li {
    grid-column: span 6;
  }
}

@media screen and (max-width: 600px) {
  /* line 30, _sass/_grid.scss */
  .grid--cases > ul > li {
    grid-column: span 12;
    width: 100%;
  }
}

/* line 59, _sass/_grid.scss */
.grid--cases > ul > li > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d8d8d8;
  color: #333333;
  padding: 28px;
  transition: all 260ms ease-in-out;
}

/* line 69, _sass/_grid.scss */
.grid--cases > ul > li > a > *:first-child {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
}

/* line 75, _sass/_grid.scss */
.grid--cases > ul > li > a > *:last-child {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  margin-bottom: 0;
}

/* line 81, _sass/_grid.scss */
.grid--cases > ul > li > a > *:last-child span {
  font-size: 14px;
  color: #000000;
  display: block;
  margin-top: 16px;
}

/* line 86, _sass/_grid.scss */
.grid--cases > ul > li > a > *:last-child span img {
  width: 36px;
  margin-left: 18px;
  margin-bottom: -4px;
  transition: all 260ms ease-in-out;
}

/* line 92, _sass/_grid.scss */
.grid--cases > ul > li > a > *:last-child span:hover img {
  transform: translateX(10px);
}

/* line 96, _sass/_grid.scss */
.grid--cases > ul > li > a > *:last-child:before {
  content: '';
  position: absolute;
  top: -28px;
  height: 22px;
  width: 2px;
  background: #000000;
}

/* line 105, _sass/_grid.scss */
.grid--cases > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/bg.002.png") no-repeat 50% 50%;
  background-size: cover;
}

/* line 118, _sass/_grid.scss */
.grid--cases > ul > li:hover > a {
  background: transparent;
  color: #F5F5F5;
}

/* line 122, _sass/_grid.scss */
.grid--cases > ul > li:hover > a *:before {
  background: #F5F5F5;
}

/* ############################################################ */
/* logo strips ... note: [data-scroller].js overtakes scrolling behvaiour */
/* line 3, _sass/_strip.scss */
.strip {
  position: relative;
  z-index: 1;
  background: #d8d8d8;
  display: grid;
  grid-template-columns: calc(100vw/6) 1fr;
  overflow: hidden;
  color: #000000;
  user-select: none;
}

/* line 13, _sass/_strip.scss */
.strip > div:first-child {
  padding-left: 112px;
  padding-top: 74.6666666667px;
  width: calc(100vw/6);
}

/* line 17, _sass/_strip.scss */
.strip > div:first-child h3 {
  opacity: 0.5;
}

@media screen and (max-width: 1020px) {
  /* line 3, _sass/_strip.scss */
  .strip {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }
  /* line 24, _sass/_strip.scss */
  .strip > div:first-child {
    position: absolute;
    top: -28px;
    padding-left: 56px;
    display: block;
  }
  /* line 29, _sass/_strip.scss */
  .strip > div:first-child h3 {
    font-size: 36px;
  }
}

@media screen and (max-width: 600px) {
  /* line 35, _sass/_strip.scss */
  .strip > div:first-child {
    padding-left: 28px;
  }
  /* line 38, _sass/_strip.scss */
  .strip:after {
    position: absolute;
    right: 0;
    width: 20%;
    top: 0;
    pointer-events: none;
    height: 100%;
    background: linear-gradient(90deg, transparent, #d8d8d8);
  }
}

/* line 50, _sass/_strip.scss */
.strip .strip--wrapper {
  position: relative;
  /* required for data-scroller */
  overflow-x: scroll;
  /* required for data-scroller */
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none;
  /* Firefoxy */
  scrollbar-width: none;
}

/* line 55, _sass/_strip.scss */
.strip .strip--wrapper > ul {
  display: grid;
  grid-template-columns: repeat(100, calc(100vw/6));
}

@media screen and (max-width: 1020px) {
  /* line 55, _sass/_strip.scss */
  .strip .strip--wrapper > ul {
    /* small screen */
    grid-template-columns: repeat(100, 240px);
  }
}

/* line 62, _sass/_strip.scss */
.strip .strip--wrapper > ul > li {
  padding: 74.6666666667px 0 74.6666666667px;
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  /* the company name */
}

/* line 68, _sass/_strip.scss */
.strip .strip--wrapper > ul > li span {
  display: block;
  margin-top: 56px;
  opacity: 0.5;
}

/* line 77, _sass/_strip.scss */
.strip .strip--wrapper::-webkit-scrollbar {
  display: none;
}

/* line 84, _sass/_strip.scss */
.strip .strip--controls {
  position: absolute;
  bottom: 56px;
  width: 100%;
}

@media screen and (max-width: 1020px) {
  /* line 84, _sass/_strip.scss */
  .strip .strip--controls {
    bottom: 28px;
  }
}

@media screen and (max-width: 600px) {
  /* line 84, _sass/_strip.scss */
  .strip .strip--controls {
    display: none;
  }
}

/* line 94, _sass/_strip.scss */
.strip .strip--controls li {
  position: absolute;
  cursor: pointer;
  transition: all 260ms ease-in-out;
}

/* line 99, _sass/_strip.scss */
.strip .strip--controls img {
  width: 36px;
  height: 18px;
}

/* line 103, _sass/_strip.scss */
.strip .strip--controls .strip--controls--next {
  left: calc(calc(100vw/6) - 46px);
}

/* line 105, _sass/_strip.scss */
.strip .strip--controls .strip--controls--next:hover {
  transform: translateX(-10px);
}

@media screen and (max-width: 1020px) {
  /* line 103, _sass/_strip.scss */
  .strip .strip--controls .strip--controls--next {
    left: 56px;
  }
}

/* line 112, _sass/_strip.scss */
.strip .strip--controls .strip--controls--prev {
  right: 56px;
}

/* line 114, _sass/_strip.scss */
.strip .strip--controls .strip--controls--prev:hover {
  transform: translateX(10px);
}

/* line 1, _sass/_engagements.scss */
.engagements {
  position: relative;
  z-index: 1;
  background: #F5F5F5 url("/assets/img/bg/Home-V2.png") no-repeat 50% 0%;
  background-size: cover;
  padding: 112px 0 0;
  transition: all 260ms ease-in-out;
}

@media screen and (max-width: 600px) {
  /* line 1, _sass/_engagements.scss */
  .engagements {
    background-position: 100% 100%;
    padding-top: 56px;
  }
}

/* line 16, _sass/_engagements.scss */
.engagements h1 {
  text-align: center;
  margin-bottom: 112px;
}

@media screen and (max-width: 600px) {
  /* line 16, _sass/_engagements.scss */
  .engagements h1 {
    font-size: 30px;
    line-height: 30px;
  }
}

/* line 24, _sass/_engagements.scss */
.engagements h3 {
  font-size: 36px;
  line-height: 46px;
}

@media screen and (max-width: 600px) {
  /* line 24, _sass/_engagements.scss */
  .engagements h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

/* line 32, _sass/_engagements.scss */
.engagements .engagements--wrapper {
  overflow-x: scroll;
  padding: 0 112px 140px;
  transition: all 260ms linear;
  /* required for data-scroller */
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none;
  /* Firefoxy */
  scrollbar-width: none;
}

@media screen and (max-width: 600px) {
  /* line 32, _sass/_engagements.scss */
  .engagements .engagements--wrapper {
    padding: 0 56px 56px;
  }
}

/* line 41, _sass/_engagements.scss */
.engagements .engagements--wrapper::-webkit-scrollbar {
  display: none;
}

/* line 47, _sass/_engagements.scss */
.engagements .engagements--wrapper:after {
  content: '';
  position: absolute;
  right: 0;
  width: 20%;
  top: 224px;
  pointer-events: none;
  height: 100%;
  background: linear-gradient(90deg, transparent, #F5F5F5);
}

@media screen and (max-width: 600px) {
  /* line 47, _sass/_engagements.scss */
  .engagements .engagements--wrapper:after {
    content: none;
  }
}

/* line 62, _sass/_engagements.scss */
.engagements .engagements--wrapper > ul {
  display: grid;
  grid-template-columns: repeat(12, 560px);
  grid-template-rows: auto auto;
  width: 100%;
}

@media screen and (max-width: 600px) {
  /* line 62, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul {
    display: block;
    grid-template-columns: repeat(12, 448px);
  }
}

/* line 72, _sass/_engagements.scss */
.engagements .engagements--wrapper > ul li {
  position: relative;
  border-bottom: 4px solid #000000;
  padding-bottom: 46px;
}

@media screen and (max-width: 600px) {
  /* line 72, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li {
    border: none;
    padding: 0;
  }
}

/* line 80, _sass/_engagements.scss */
.engagements .engagements--wrapper > ul li > div {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr;
  grid-template-rows: 100px 1fr;
  width: 100%;
  padding-right: 112px;
  height: 100%;
  display: block;
}

@media screen and (max-width: 600px) {
  /* line 80, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li > div {
    padding: 0;
    grid-template-rows: auto 1fr;
    grid-gap: 22px;
  }
}

/* line 94, _sass/_engagements.scss */
.engagements .engagements--wrapper > ul li > div > h3 {
  align-self: flex-start;
}

/* line 97, _sass/_engagements.scss */
.engagements .engagements--wrapper > ul li > div > span {
  position: absolute;
  top: 100px;
  left: -44px;
  font-size: 60px;
}

@media screen and (max-width: 600px) {
  /* line 97, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li > div > span {
    font-size: 30px;
    top: 0;
  }
}

/* line 107, _sass/_engagements.scss */
.engagements .engagements--wrapper > ul li > div:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 28px;
  background: #000000;
  bottom: 0;
}

/* line 115, _sass/_engagements.scss */
.engagements .engagements--wrapper > ul li > div:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #000000;
  border-radius: 100%;
  bottom: -58px;
  left: -10px;
}

@media screen and (max-width: 600px) {
  /* line 126, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li > div:after, .engagements .engagements--wrapper > ul li > div:before {
    content: none;
  }
}

@media screen and (min-width: 601px) {
  /* line 132, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li:nth-child(2n) {
    grid-row: 2;
    border: none;
    padding-bottom: 0;
    padding-top: 46px;
    transform: translateX(215px);
  }
  /* line 138, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li:nth-child(2n) > div {
    padding-top: 56px;
  }
  /* line 140, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li:nth-child(2n) > div > span {
    top: 156px;
  }
  /* line 143, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li:nth-child(2n) > div:after {
    bottom: auto;
    top: -0px;
  }
  /* line 147, _sass/_engagements.scss */
  .engagements .engagements--wrapper > ul li:nth-child(2n) > div:before {
    bottom: auto;
    top: -58px;
  }
}

/* line 154, _sass/_engagements.scss */
.engagements .engagements--wrapper > ul li:last-child {
  border-color: transparent;
}

/* line 160, _sass/_engagements.scss */
.engagements .engagements--controls {
  position: absolute;
  left: 112px;
  right: 112px;
  bottom: 112px;
  user-select: none;
}

@media screen and (max-width: 900px) {
  /* line 160, _sass/_engagements.scss */
  .engagements .engagements--controls {
    left: 28px;
    right: 28px;
  }
}

@media screen and (max-width: 600px) {
  /* line 160, _sass/_engagements.scss */
  .engagements .engagements--controls {
    display: none;
  }
}

/* line 173, _sass/_engagements.scss */
.engagements .engagements--controls img {
  margin-right: 37.3333333333px;
}

/* line 176, _sass/_engagements.scss */
.engagements .engagements--controls li {
  position: absolute;
  display: flex;
  align-items: center;
  line-height: 0;
  cursor: pointer;
  transition: all 260ms ease-in-out;
}

/* line 183, _sass/_engagements.scss */
.engagements .engagements--controls li:hover {
  transform: translateX(-10px);
}

/* line 186, _sass/_engagements.scss */
.engagements .engagements--controls li:last-child {
  right: 0;
}

/* line 188, _sass/_engagements.scss */
.engagements .engagements--controls li:last-child img {
  margin: 0 0 0 37.3333333333px;
}

/* line 191, _sass/_engagements.scss */
.engagements .engagements--controls li:last-child:hover {
  transform: translateX(10px);
}

@media screen and (max-width: 900px) {
  /* line 196, _sass/_engagements.scss */
  .engagements .engagements--controls li span {
    display: none;
  }
}

/* ############################################################ */
/* backgrounds (lines, gradient images, etc) */
/* line 3, _sass/_decor.scss */
.decor--lines {
  position: absolute;
  z-index: 0;
  top: 168px;
  left: 112px;
  bottom: 0;
  height: 100%;
  min-height: 100vh;
  width: calc(100vw - 236px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0.25;
}

/* line 17, _sass/_decor.scss */
.decor--lines span {
  border-left: 1px solid #9b9b9b;
}

@media screen and (max-width: 900px) {
  /* line 3, _sass/_decor.scss */
  .decor--lines {
    width: calc(100% - 112px);
    left: 56px;
    grid-template-columns: repeat(4, 1fr);
  }
  /* line 25, _sass/_decor.scss */
  .decor--lines span:nth-child(3n+1) {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  /* line 3, _sass/_decor.scss */
  .decor--lines {
    width: calc(100% - 112px);
    left: 28px;
    grid-template-columns: repeat(4, 1fr);
  }
  /* line 34, _sass/_decor.scss */
  .decor--lines span:nth-child(3n+1) {
    display: none;
  }
}

/* line 40, _sass/_decor.scss */
.decor--background {
  background-size: cover;
  background-position: 50% 50%;
}

/* line 43, _sass/_decor.scss */
.decor--background__cases, .decor--background__team {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("/assets/img/bg/Case-Studies.png");
}

@media screen and (max-width: 900px) {
  /* line 43, _sass/_decor.scss */
  .decor--background__cases, .decor--background__team {
    background-size: auto;
    background-position: 100% -20%;
  }
}

@media screen and (max-width: 600px) {
  /* line 52, _sass/_decor.scss */
  .decor--background__team {
    background: none;
  }
}

/* line 59, _sass/_decor.scss */
*.decor--fadeOut {
  opacity: 0;
  transform: translateY(25px) scale(0.95);
  transition: all 260ms ease-in-out;
  transition-delay: 0ms;
}

/* line 66, _sass/_decor.scss */
*.decor--fadeIn {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(1) {
  transition-delay: 100ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(2) {
  transition-delay: 200ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(3) {
  transition-delay: 300ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(4) {
  transition-delay: 400ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(5) {
  transition-delay: 500ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(6) {
  transition-delay: 600ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(7) {
  transition-delay: 700ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(8) {
  transition-delay: 800ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(9) {
  transition-delay: 900ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(10) {
  transition-delay: 1000ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(11) {
  transition-delay: 1100ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(12) {
  transition-delay: 1200ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(13) {
  transition-delay: 1300ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(14) {
  transition-delay: 1400ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(15) {
  transition-delay: 1500ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(16) {
  transition-delay: 1600ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(17) {
  transition-delay: 1700ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(18) {
  transition-delay: 1800ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(19) {
  transition-delay: 1900ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(20) {
  transition-delay: 2000ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(21) {
  transition-delay: 2100ms;
}

/* line 70, _sass/_decor.scss */
*.decor--fadeIn:nth-child(22) {
  transition-delay: 2200ms;
}

/* ############################################################ */
/* footer... all pages */
/* line 3, _sass/_footer.scss */
footer {
  position: relative;
  z-index: 1;
  background: #9b9b9b;
  padding: 168px 112px;
  padding-bottom: 56px !important;
  padding-top: 56px !important;
  /* layout */
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /* styles */
  color: #F5F5F5;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 900px) {
  /* line 3, _sass/_footer.scss */
  footer {
    padding: 112px 56px;
  }
}

@media screen and (max-width: 600px) {
  /* line 3, _sass/_footer.scss */
  footer {
    padding: 112px 28px;
  }
}

/* line 15, _sass/_footer.scss */
footer > ul {
  grid-column: span 6;
  /* inner grid */
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

/* line 21, _sass/_footer.scss */
footer > ul li:first-child {
  grid-column: 1 / span 1;
}

/* line 23, _sass/_footer.scss */
footer > ul li:first-child img {
  padding-right: 28px;
}

@media screen and (max-width: 1280px) {
  /* line 21, _sass/_footer.scss */
  footer > ul li:first-child {
    grid-column: 1 / span 6;
  }
  /* line 28, _sass/_footer.scss */
  footer > ul li:first-child img {
    max-width: 112px;
    margin-bottom: 28px;
  }
}

/* line 34, _sass/_footer.scss */
footer > ul li:nth-child(2) {
  grid-column: span 2;
  white-space: nowrap;
}

@media screen and (max-width: 1780px) {
  /* line 34, _sass/_footer.scss */
  footer > ul li:nth-child(2) {
    grid-column: span 3;
  }
}

@media screen and (max-width: 1280px) {
  /* line 34, _sass/_footer.scss */
  footer > ul li:nth-child(2) {
    grid-column: span 6;
    margin-bottom: 28px;
  }
}

/* line 45, _sass/_footer.scss */
footer > ul li:nth-child(3) {
  grid-column: span 2;
  white-space: nowrap;
}

@media screen and (max-width: 1280px) {
  /* line 45, _sass/_footer.scss */
  footer > ul li:nth-child(3) {
    grid-column: span 6;
  }
}

/* line 53, _sass/_footer.scss */
footer > form {
  grid-column: 9 / span 3;
}

@media screen and (max-width: 1280px) {
  /* line 53, _sass/_footer.scss */
  footer > form {
    grid-column: 7 / span 6;
  }
}

@media screen and (max-width: 600px) {
  /* line 53, _sass/_footer.scss */
  footer > form {
    margin-bottom: 56px;
    grid-column: 1 / span 12;
    grid-row: 1;
  }
}

/* line 70, _sass/_footer.scss */
footer a {
  color: #F5F5F5;
}

/* line 73, _sass/_footer.scss */
footer form {
  position: relative;
  font-family: "Arimo", sans-serif;
  font-size: 22px;
}

/* line 78, _sass/_footer.scss */
footer input {
  border-color: #F5F5F5;
  font-size: 22px;
  line-height: 48px;
  margin: 0;
  color: #333333;
}

/* line 84, _sass/_footer.scss */
footer input::placeholder {
  color: #686868;
}

/* line 88, _sass/_footer.scss */
footer form button {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: 10px;
  width: 36px;
  height: 18px;
  padding: 0;
  background: none;
  border: none;
  color: #F5F5F5;
  font-size: 0px;
  line-height: 0px;
  display: block;
  float: none;
}

/* line 103, _sass/_footer.scss */
footer form button img {
  width: 36px;
  height: 18px;
}

@media screen and (max-width: 900px) {
  /* line 18, styles.scss */
  .hide-phone {
    display: none;
  }
}

/* line 23, styles.scss */
.hide-desktop {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 600px) {
  /* line 23, styles.scss */
  .hide-desktop {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */