@charset "UTF-8";
/*------------------------------------*\
  #RESET
\*------------------------------------*/
/**
 * As well as using Normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body,
h1, h2, h3, h4, h5, h6,
blockquote, pre,
dl, dd,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/*------------------------------------*\
  #FORMS
\*------------------------------------*/
button:hover,
html [type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  cursor: pointer;
}

fieldset {
  border: solid 0 black;
}

form .form-item {
  display: block;
  border-bottom: solid 1px #ffffff;
  margin-bottom: 20px;
  padding: 0 0 5px 0;
}
form .form-item.fui-type-multi-line-text {
  border-bottom: solid 0 transparent;
}
form .fui-label {
  font-size: 0.8888888889rem;
  font-family: "Muli", roboto, sans-serif;
  font-weight: 800;
  color: #ffffff;
}
form input[type=text],
form input[type=email],
form input[type=number] {
  border: solid 0 transparent;
  background-color: transparent;
  color: #ffffff;
  display: inline;
  padding: 0 5px;
  font-size: 0.8888888889rem;
  transition: all 0.1s ease-in-out;
  font-family: "Muli", roboto, sans-serif;
  font-weight: 400;
}
form input[type=text]:hover,
form input[type=email]:hover,
form input[type=number]:hover {
  background-color: #333333;
}
form textarea {
  font-family: "Muli", roboto, sans-serif;
  font-weight: 400;
  clear: left;
  display: block;
  margin-top: 5px;
  width: 100%;
  border: solid 0 transparent;
  background-color: transparent;
  color: #ffffff;
  font-size: 0.8888888889rem;
  transition: all 0.1s ease-in-out;
  padding: 2px 5px;
}
form textarea:hover {
  background-color: #333333;
}

.fui-error-message {
  display: none !important;
}

.fui-error .fui-label {
  color: #D11E1E !important;
}

.fui-checkbox-label {
  color: white;
}

.errors {
  padding: 10px;
  background-color: #D11E1E;
  margin-bottom: 10px;
  color: white;
  font-size: 1rem;
  line-height: 22px;
}
.errors li {
  display: inline-block;
}

.l-css-grid-row {
  flex-wrap: wrap;
  width: calc(100% - 70px);
  margin: 0 35px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 0;
}
@media (min-width: 48em) {
  .l-css-grid-row {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 28px;
    width: calc(100% - 50px);
    margin: 0 25px;
  }
}
@media (min-width: 70em) {
  .l-css-grid-row {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 28px;
    width: calc(100% - 60px);
    margin: 0 30px;
  }
}
.l-css-grid-row.nopad {
  width: 100%;
  margin: 0;
}
@media (min-width: 48em) {
  .l-css-grid-row.nopad {
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 70em) {
  .l-css-grid-row.nopad {
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 48em) {
  .l-css-grid-row.nogap {
    grid-gap: 0;
  }
}
@media (min-width: 70em) {
  .l-css-grid-row.nogap {
    grid-gap: 0;
  }
}
.l-css-grid-row.nopad-mobile-only {
  width: 100%;
  margin: 0;
}
@media (min-width: 48em) {
  .l-css-grid-row.nopad-mobile-only {
    width: calc(100% - 50px);
    margin: 0 25px;
  }
}
@media (min-width: 70em) {
  .l-css-grid-row.nopad-mobile-only {
    width: calc(100% - 50px);
    margin: 0 25px;
  }
}
.l-css-grid-row.nopad-mobile-only .addMargin {
  width: calc(100% - 70px);
  margin: 0 35px;
}
@media (min-width: 48em) {
  .l-css-grid-row.nopad-mobile-only .addMargin {
    width: calc(100% - 50px);
    margin: 0 25px;
  }
}

.l-flex-grid {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
}

.grid__item {
  flex: 0 0 100%;
  margin-bottom: 1em;
}
@media (min-width: 48em) {
  .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
@media (min-width: 70em) {
  .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
.grid__item:last-child {
  margin-right: 0;
}
.grid--columns-2 .grid__item {
  flex: 0 0 100%;
  margin-bottom: 1em;
}
@media (min-width: 48em) {
  .grid--columns-2 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
@media (min-width: 70em) {
  .grid--columns-2 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
.grid--columns-2 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .grid--columns-2 .grid__item {
    flex: 0 0 48.2%;
  }
  .grid--columns-2 .grid__item:nth-child(2n) {
    margin-right: 0;
  }
}
.grid--columns-3 .grid__item {
  flex: 0 0 100%;
  margin-bottom: 1em;
}
@media (min-width: 48em) {
  .grid--columns-3 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
@media (min-width: 70em) {
  .grid--columns-3 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
.grid--columns-3 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .grid--columns-3 .grid__item {
    flex: 0 0 48%;
  }
  .grid--columns-3 .grid__item:nth-child(even) {
    margin-right: 0;
  }
  .grid--columns-3 .grid__item:nth-child(odd) {
    margin-right: 3%;
  }
}
@media (min-width: 70em) {
  .grid--columns-3 .grid__item {
    flex: 0 0 31%;
  }
  .grid--columns-3 .grid__item:nth-child(2n) {
    margin-right: 3%;
  }
  .grid--columns-3 .grid__item:nth-child(3n) {
    margin-right: 0;
  }
}
.grid--columns-6 .grid__item {
  flex: 0 0 100%;
  margin-bottom: 1em;
  flex: 0 0 50%;
  margin-bottom: 30px;
}
@media (min-width: 48em) {
  .grid--columns-6 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
@media (min-width: 70em) {
  .grid--columns-6 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
.grid--columns-6 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .grid--columns-6 .grid__item {
    flex: 0 0 25%;
  }
  .grid--columns-6 .grid__item:nth-child(even) {
    margin-right: 0;
  }
  .grid--columns-6 .grid__item:nth-child(odd) {
    margin-right: 0;
  }
}
@media (min-width: 70em) {
  .grid--columns-6 .grid__item {
    flex: 0 0 16.66666%;
  }
  .grid--columns-6 .grid__item:nth-child(2n) {
    margin-right: 0;
  }
  .grid--columns-6 .grid__item:nth-child(3n) {
    margin-right: 0;
  }
}
.nopad.grid--columns-2 .grid__item {
  flex: 0 0 100%;
  margin-bottom: 1em;
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .nopad.grid--columns-2 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
@media (min-width: 70em) {
  .nopad.grid--columns-2 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
.nopad.grid--columns-2 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 37.5em) {
  .nopad.grid--columns-2 .grid__item {
    flex: 0 0 50%;
    margin: 0;
  }
  .nopad.grid--columns-2 .grid__item:nth-child(2n) {
    margin-right: 0;
  }
}
.nopad.grid--columns-3 .grid__item {
  flex: 0 0 100%;
  margin-bottom: 1em;
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .nopad.grid--columns-3 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
@media (min-width: 70em) {
  .nopad.grid--columns-3 .grid__item {
    margin: 0 3% 3% 0;
    flex: 0 0 auto;
  }
}
.nopad.grid--columns-3 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .nopad.grid--columns-3 .grid__item {
    flex: 0 0 50%;
    margin: 0;
  }
  .nopad.grid--columns-3 .grid__item:nth-child(even) {
    margin-right: 0;
  }
  .nopad.grid--columns-3 .grid__item:nth-child(odd) {
    margin-right: 0;
  }
}
@media (min-width: 70em) {
  .nopad.grid--columns-3 .grid__item {
    flex: 0 0 33.333%;
    margin: 0;
  }
  .nopad.grid--columns-3 .grid__item:nth-child(2n) {
    margin-right: 0;
  }
  .nopad.grid--columns-3 .grid__item:nth-child(3n) {
    margin-right: 0;
  }
}

h1.home {
  font-weight: 800;
  font-size: 1.7777777778rem;
  line-height: 37px;
  margin-bottom: 20px;
}
@media (min-width: 48em) {
  h1.home {
    font-size: 3.1111111111rem;
    line-height: 60px;
    margin-bottom: 30px;
  }
}
@media (min-width: 70em) {
  h1.home {
    font-size: 5rem;
    line-height: 105px;
  }
}

h1 {
  font-weight: 800;
  font-size: 1.1111111111rem;
  margin-bottom: 20px;
}
@media (min-width: 48em) {
  h1 {
    font-size: 1.9444444444rem;
    margin-bottom: 30px;
  }
}

h2 {
  font-weight: 800;
  font-size: 1.5555555556rem;
  margin-bottom: 20px;
}
@media (min-width: 48em) {
  h2 {
    font-size: 1.9444444444rem;
    margin-bottom: 20px;
  }
}

h3 {
  font-weight: 800;
  font-size: 1.1111111111rem;
  margin-bottom: 20px;
}
@media (min-width: 48em) {
  h3 {
    font-size: 1.3333333333rem;
    margin-bottom: 20px;
  }
}

h4 {
  font-weight: 800;
  margin-bottom: 30px;
}

.h-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.h-padtop-50 {
  padding-top: 50px;
  position: relative;
}

.h-desk {
  display: none;
}
@media (min-width: 64em) {
  .h-desk {
    display: block;
  }
}

.h-mob {
  display: block;
}
@media (min-width: 64em) {
  .h-mob {
    display: none;
  }
}

.h-relative {
  position: relative;
}

.pad-top {
  padding-top: 26px;
}

.pad-top-2 {
  padding-top: 52px;
}

.pad-top-3 {
  padding-top: 78px;
}

.pad-top-4 {
  padding-top: initial;
}
@media (min-width: 48em) {
  .pad-top-4 {
    padding-top: 104px;
  }
}

.pad-top-5 {
  padding-top: 130px;
}

.pad-btm {
  padding-bottom: 26px;
}

.pad-btm-3 {
  padding-bottom: 78px;
}

.pad-btm-4 {
  padding-bottom: initial;
}
@media (min-width: 48em) {
  .pad-btm-4 {
    padding-bottom: 104px;
  }
}

.mar-top {
  margin-top: 26px;
}

.mar-top-5 {
  margin-top: 78px;
}

.mar-btm {
  margin-bottom: 26px;
}

.mar-btm-2 {
  margin-bottom: 52px;
}

.mar-btm-3 {
  margin-bottom: 78px;
}

.mar-btm-4 {
  margin-bottom: 104px;
}

.mar-btm-5 {
  margin-bottom: 130px;
}

.float-left {
  float: left;
}

.visually-hidden {
  display: none;
}

/*------------------------------------*\
  #IMAGES
\*------------------------------------*/
/*------------------------------------*\
  #IMAGES
\*------------------------------------*/
img.l-image-desk {
  display: none;
}
@media (min-width: 48em) {
  img.l-image-desk {
    display: inline-block;
  }
}

img.l-image-mobile {
  display: inline-block;
}
@media (min-width: 48em) {
  img.l-image-mobile {
    display: none;
  }
}

.c-slider .c-slider-item img.l-image-desk {
  display: none;
}
@media (min-width: 48em) {
  .c-slider .c-slider-item img.l-image-desk {
    display: inline-block;
  }
}
.c-slider .c-slider-item img.l-image-mobile {
  display: inline-block;
}
@media (min-width: 48em) {
  .c-slider .c-slider-item img.l-image-mobile {
    display: none;
  }
}

.c-mob {
  display: initial;
}
@media (min-width: 48em) {
  .c-mob {
    display: none;
  }
}

.c-desk {
  display: none;
}
@media (min-width: 48em) {
  .c-desk {
    display: initial;
  }
}

/**
 * High-level, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Prevent certain mobile browsers from automatically zooming fonts.
 * 5. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */
html {
  font-size: 1.125em; /* [1] */
  overflow-y: scroll; /* [2] */
  min-height: 100%; /* [3] */
  -webkit-text-size-adjust: 100%; /* [4] */
  -ms-text-size-adjust: 100%; /* [4] */
  -moz-osx-font-smoothing: grayscale; /* [5] */
  -webkit-font-smoothing: antialiased; /* [5] */
  color: #000000;
  font-family: "Muli", roboto, sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* Instead use this non-standard one: */
}

.content img {
  width: 100%;
  height: auto;
}
.content .slider-video {
  width: 100%;
  height: auto;
}

.c-max-width {
  max-width: 1440px;
  margin: 0 auto;
}

.c-work-matrix-img {
  line-height: 0;
}
.c-work-matrix-img img {
  width: 100%;
}

.c-grey-row-wrapper {
  float: left;
  width: 100%;
  background-color: #f0f0f0;
  position: relative;
  z-index: -2;
}
@media (min-width: 48em) {
  .c-grey-row-wrapper.c-no-colour-desktop {
    background-color: #ffffff;
  }
}

.c-row-wrapper {
  float: left;
  width: 100%;
  position: relative;
  z-index: -2;
}

.c-standfirst {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  text-align: left;
  padding: 78px 0;
}
@media (min-width: 48em) {
  .c-standfirst {
    grid-column: 2/8;
    -ms-grid-column: 2;
    -ms-grid-column-span: 6;
  }
}
@media (min-width: 70em) {
  .c-standfirst {
    grid-column: 3/11;
    -ms-grid-column: 3;
    -ms-grid-column-span: 8;
  }
}
@media (min-width: 48em) {
  .c-standfirst {
    text-align: center;
    padding: 52px 0;
  }
}
.c-standfirst a {
  color: #000000;
  text-decoration: none;
}
.c-standfirst a:hover {
  color: #f7dd02;
}

.c-6of12 {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  text-align: center;
}
@media (min-width: 48em) {
  .c-6of12 {
    grid-column: 2/8;
    -ms-grid-column: 2;
    -ms-grid-column-span: 6;
  }
}
@media (min-width: 70em) {
  .c-6of12 {
    grid-column: 4/10;
    -ms-grid-column: 4;
    -ms-grid-column-span: 6;
  }
}
.c-6of12 a {
  color: #000000;
  text-decoration: none;
}
.c-6of12 a:hover {
  color: #f7dd02;
}

.c-paragraph {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}
@media (min-width: 48em) {
  .c-paragraph {
    grid-column: 2/8;
    -ms-grid-column: 2;
    -ms-grid-column-span: 6;
  }
}
@media (min-width: 70em) {
  .c-paragraph {
    grid-column: 3/11;
    -ms-grid-column: 3;
    -ms-grid-column-span: 8;
  }
}
.c-paragraph a {
  color: #000000;
}
.c-paragraph a:hover {
  color: #f7dd02;
}

.c-tag {
  font-size: 0.7777777778rem;
  text-transform: uppercase;
  font-weight: 700;
  /* 16 * 0.0625 = 1px */
  letter-spacing: 0.0625em;
}
.c-tag span:after {
  content: "/";
  padding-left: 4px;
}
.c-tag span:last-child:after {
  content: "";
}

.boldText {
  font-weight: 800;
}

.c-hero {
  width: 100%;
  height: auto;
  overflow: hidden;
  line-height: 0;
}
.c-hero.small {
  max-height: 600px;
  line-height: inherit;
  width: 200%;
  height: 100%;
  overflow: hidden;
  background-color: black;
}
@media (min-width: 48em) {
  .c-hero.small {
    width: 100%;
    height: auto;
  }
}
.c-hero.small .c-title-block {
  position: absolute;
  top: 100px;
  left: 10%;
}
@media (min-width: 70em) {
  .c-hero.small .c-title-block {
    top: 200px;
    left: 200px;
  }
}
.c-hero.small h1, .c-hero.small p, .c-hero.small a {
  color: white;
}

.half {
  display: inline-block;
  width: 100%;
}
@media (min-width: 48em) {
  .half {
    width: 49%;
  }
}

@media (min-width: 48em) {
  .c-aos-list .aos-item {
    position: relative;
  }
  .c-aos-list .aos-item:nth-child(odd) {
    transition-delay: 0.5s;
  }
}
@media (min-width: 64em) {
  .c-aos-list .aos-item {
    opacity: 0;
  }
  .c-aos-list .aos-item:nth-child(odd) {
    transition-delay: 0.8s;
  }
  .c-aos-list .aos-item:nth-child(even) {
    transition-delay: 1s;
  }
}

.c-btn {
  font-size: 0.8333333333rem;
  font-weight: 900;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 20px;
  width: auto;
  margin: 20px 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 48em) {
  .c-btn {
    padding: 20px 50px 22px;
  }
}
@media (min-width: 70em) {
  .c-btn {
    margin: 20px 0;
  }
}
.c-btn:before, .c-btn:after {
  transition: all 0.5s ease-out;
  z-index: -1;
}

.c-btn-primary {
  color: #ffffff;
  border: solid 1px #ffffff;
  background-color: transparent;
  transition: all 0.2s linear;
}
@media (min-width: 70em) {
  .c-btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform: translateX(-101%);
  }
}
.c-btn-primary:hover {
  color: #ffffff;
  border: solid 1px #f7dd02;
  background-color: transparent;
}
@media (min-width: 70em) {
  .c-btn-primary:hover {
    color: #000000;
  }
}
@media (min-width: 70em) {
  .c-btn-primary:hover:before {
    transform: translateX(0);
    background-color: #f7dd02;
  }
}

.c-btn-contact.c-btn-primary:hover {
  color: #f7dd02;
}

.c-btn-yellow {
  color: #000000;
  border: solid 1px #000000;
}
@media (min-width: 70em) {
  .c-btn-yellow:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f7dd02;
    transform: translateX(-101%);
  }
}
.c-btn-yellow:hover {
  color: #f7dd02;
  border: solid 1px #000000;
}
@media (min-width: 70em) {
  .c-btn-yellow:hover:before {
    transform: translateX(0);
    background-color: #000000;
  }
}

.c-btn-clear--white {
  color: #ffffff;
  border: solid 1px #ffffff;
}
@media (min-width: 70em) {
  .c-btn-clear--white:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    transform: translateX(-101%);
  }
}
.c-btn-clear--white:hover {
  color: #ffffff;
  border: solid 1px #f7dd02;
}
@media (min-width: 70em) {
  .c-btn-clear--white:hover {
    color: #000000;
  }
}
@media (min-width: 70em) {
  .c-btn-clear--white:hover:before {
    transform: translateX(0);
    background-color: #f7dd02;
  }
}

.c-btn-clear--black {
  color: #000000;
  border: solid 1px #000000;
}
@media (min-width: 70em) {
  .c-btn-clear--black:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    transform: translateX(-101%);
  }
}
.c-btn-clear--black:hover {
  color: #000000;
  border: solid 1px #f7dd02;
}
@media (min-width: 70em) {
  .c-btn-clear--black:hover:before {
    transform: translateX(0);
    background-color: #f7dd02;
  }
}

.c-btn-secondary {
  display: inline-block;
  vertical-align: middle;
  font: inherit;
  text-align: center;
  margin: 10px 0 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.7777777778rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
}
@media (min-width: 48em) {
  .c-btn-secondary {
    margin: 20px 0;
    padding-left: 0;
  }
}
.c-btn-secondary:hover {
  text-decoration: underline;
}
.c-btn-secondary:after {
  content: "";
  background-image: url("../assets/icons/arrow-up-black.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 10px 5px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
}

.c-client-logos {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  -ms-grid-row: 2;
}
@media (min-width: 48em) {
  .c-client-logos {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
  }
}
@media (min-width: 70em) {
  .c-client-logos {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
  }
}

.c-client {
  padding: 2px 0;
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 48em) {
  .c-client {
    padding: 0;
  }
}
.c-client svg,
.c-client img {
  max-width: 100px;
  transform: translate(0, -50%);
}
@media (min-width: 48em) {
  .c-client svg,
  .c-client img {
    max-width: 140px;
  }
}

.c-contact-map {
  width: 100%;
  display: inline-block;
  order: 2;
  background-color: #000000;
}
@media (min-width: 48em) {
  .c-contact-map {
    width: calc(100% - 400px);
    order: 1;
  }
}
@media (min-width: 64em) {
  .c-contact-map {
    width: calc(100% - 470px);
    order: 1;
  }
}

.c-contact-form {
  background-color: #000000;
  width: 100%;
  min-width: auto;
  order: 1;
  display: inline-block;
}
@media (min-width: 48em) {
  .c-contact-form {
    width: 100%;
    max-width: 400px;
  }
}
@media (min-width: 64em) {
  .c-contact-form {
    width: 100%;
    max-width: 470px;
  }
}
.c-contact-form .c-contact-padding {
  padding: 30px;
}
@media (min-width: 48em) {
  .c-contact-form .c-contact-padding {
    padding: 50px 30px 30px 30px;
  }
}
@media (min-width: 64em) {
  .c-contact-form .c-contact-padding {
    padding: 50px 30px 50px 74px;
  }
}
.c-contact-form h1 {
  color: #ffffff;
}
.c-contact-form .fui-row .fui-label {
  font-size: 0.8888888889rem;
  font-family: "Muli", roboto, sans-serif;
  font-weight: 800;
  color: #ffffff;
  display: inline-block;
}
.c-contact-form .fui-row .fui-input {
  border-radius: 0;
}
.c-contact-form .fui-row .fui-type-single-line-text .fui-label,
.c-contact-form .fui-row .fui-type-email-address .fui-label {
  display: inline-block;
  width: 76px;
}
.c-contact-form .fui-row .fui-type-single-line-text .fui-input-container,
.c-contact-form .fui-row .fui-type-email-address .fui-input-container {
  width: calc(100% - 76px);
  display: inline-block;
  background-color: #333333;
}
.c-contact-form .fui-row .fui-type-multi-line-text .fui-input-container {
  font-family: "Muli", roboto, sans-serif;
  font-weight: 400;
  clear: left;
  display: block;
  margin-top: 5px;
  width: 100%;
  border: solid 0 transparent;
  background-color: transparent;
  color: #ffffff;
  font-size: 0.8888888889rem;
  transition: all 0.1s ease-in-out;
}
.c-contact-form .fui-row .fui-type-multi-line-text .fui-input-container .fui-input {
  border: solid 0 transparent;
  background-color: #333333;
  padding: 2px 5px;
  border-radius: 0;
}
.c-contact-form .fui-row .fui-type-agree .fui-checkbox-label {
  font-weight: 400;
  font-size: 0.7777777778rem;
  line-height: 16px;
}

.c-contact-form .fui-submit,
.c-apply-form .fui-submit {
  font-size: 0.8333333333rem;
  font-weight: 900;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 20px;
  width: auto;
  margin: 20px 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  border: solid 1px #ffffff;
  border-radius: 0;
  background-color: transparent;
  transition: all 0.2s linear;
}
@media (min-width: 48em) {
  .c-contact-form .fui-submit,
  .c-apply-form .fui-submit {
    padding: 20px 50px 22px;
  }
}
@media (min-width: 70em) {
  .c-contact-form .fui-submit,
  .c-apply-form .fui-submit {
    margin: 20px 0;
  }
}
.c-contact-form .fui-submit:hover,
.c-apply-form .fui-submit:hover {
  color: #f7dd02;
  background-color: transparent;
  border: solid 1px #f7dd02;
}

.message.success {
  color: #67B774;
  padding-bottom: 10px;
}

body.page-404 .content {
  text-align: center;
}
body.page-404 .content img {
  max-width: 200px;
}
body.page-404 .content ul {
  padding-left: 0;
}
body.page-404 .content ul li {
  list-style-type: none;
  display: inline-block;
  padding-right: 20px;
}

footer {
  background-color: white;
  padding: 80px 0 30px;
  float: left;
  width: 100%;
}
footer li {
  display: inline-block;
  list-style-type: none;
}

footer .l-css-grid-row div {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}
@media (min-width: 48em) {
  footer .l-css-grid-row div {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
  }
}
@media (min-width: 70em) {
  footer .l-css-grid-row div {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
  }
}
footer .l-css-grid-row .intro {
  font-weight: 400;
  font-size: 1rem;
}
@media (min-width: 48em) {
  footer .l-css-grid-row .intro {
    grid-column: 1/6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    -ms-grid-row: 1;
    font-weight: 700;
    font-size: 1.3333333333rem;
  }
}
@media (min-width: 70em) {
  footer .l-css-grid-row .intro {
    grid-column: 1/7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    -ms-grid-row: 1;
  }
}
footer .l-css-grid-row .address {
  padding-top: 20px;
}
@media (min-width: 48em) {
  footer .l-css-grid-row .address {
    grid-column: 6/9;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    -ms-grid-row: 1;
    padding-top: 0;
  }
}
@media (min-width: 70em) {
  footer .l-css-grid-row .address {
    grid-column: 9/13;
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
    -ms-grid-row: 1;
  }
}
footer .l-css-grid-row .social {
  order: 1;
  margin: 30px 0;
}
footer .l-css-grid-row .social a {
  text-decoration: none;
}
footer .l-css-grid-row .social a:nth-child(1) .icon {
  width: 30px;
}
footer .l-css-grid-row .social a:nth-child(2) .icon {
  width: 28px;
}
footer .l-css-grid-row .social a:nth-child(3) .icon {
  width: 28px;
}
footer .l-css-grid-row .social a:nth-child(4) .icon {
  width: 22px;
}
footer .l-css-grid-row .social a:nth-child(5) .icon {
  width: 35px;
}
@media (min-width: 48em) {
  footer .l-css-grid-row .social {
    order: 2;
    grid-column: 6/9;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    -ms-grid-row: 1;
    margin: 0;
  }
}
@media (min-width: 70em) {
  footer .l-css-grid-row .social {
    order: 2;
    grid-column: 9/13;
    -ms-grid-column: 8;
    -ms-grid-column-span: 4;
    -ms-grid-row: 2;
  }
}
footer .l-css-grid-row .social .icon {
  margin-right: 17px;
  display: inline-block;
  width: 30px;
  fill: #000000;
  transition: fill 0.2s linear;
}
footer .l-css-grid-row .social .icon:hover {
  fill: #f7dd02;
}
@media (min-width: 48em) {
  footer .l-css-grid-row .social .icon {
    margin-right: 20px;
  }
}
footer .l-css-grid-row .copyright {
  font-size: 0.7777777778rem;
  order: 2;
}
@media (min-width: 48em) {
  footer .l-css-grid-row .copyright {
    font-size: 0.6666666667rem;
    order: 1;
    grid-column: 1/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 2;
  }
}
@media (min-width: 70em) {
  footer .l-css-grid-row .copyright {
    grid-column: 1/8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    -ms-grid-row: 2;
  }
}
footer .l-css-grid-row .copyright ul {
  display: inline-block;
  padding-left: 0;
}
footer .l-css-grid-row .copyright p {
  margin-left: 0;
  display: block;
}
@media (min-width: 70em) {
  footer .l-css-grid-row .copyright p {
    display: inline-block;
    margin-left: 10px;
  }
}

body.page-front footer {
  background-color: black;
  color: white;
}
@media (min-width: 48em) {
  body.page-front .intro {
    order: 1;
    font-weight: 300;
    font-size: 1.6666666667rem;
  }
}
@media (min-width: 70em) {
  body.page-front .intro {
    order: 1;
  }
}
@media (min-width: 48em) {
  body.page-front .address {
    order: 2;
  }
}
@media (min-width: 70em) {
  body.page-front .address {
    order: 2;
  }
}
@media (min-width: 48em) {
  body.page-front .intro-button {
    grid-column: 1/6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    -ms-grid-row: 1;
    order: 3;
  }
}
@media (min-width: 70em) {
  body.page-front .intro-button {
    grid-column: 1/6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    -ms-grid-row: 2;
    order: 3;
  }
}
@media (min-width: 48em) {
  body.page-front .address-button {
    grid-column: 6/9;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    -ms-grid-row: 1;
    order: 4;
  }
}
@media (min-width: 70em) {
  body.page-front .address-button {
    grid-column: 9/13;
    -ms-grid-column: 9;
    -ms-grid-column-span: 3;
    -ms-grid-row: 2;
    order: 4;
  }
}
body.page-front .c-address-2col {
  display: inline-block;
  width: 100%;
}
@media (min-width: 70em) {
  body.page-front .c-address-2col {
    width: 49%;
  }
}
@media (min-width: 48em) {
  body.page-front .copyright {
    order: 5;
  }
}
@media (min-width: 70em) {
  body.page-front .copyright {
    order: 5;
  }
}
@media (min-width: 48em) {
  body.page-front .social {
    order: 6;
  }
}
@media (min-width: 70em) {
  body.page-front .social {
    order: 6;
  }
}
body.page-front .social .icon {
  fill: #ffffff;
}
body.page-front .social .icon:hover {
  fill: #f7dd02;
}

.l-header {
  height: 60px;
  padding: 0 25px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 350;
}
.l-header + .content {
  padding-top: 60px;
}
@media (min-width: 70em) {
  .l-header {
    padding: 0 30px;
  }
}
.l-header.c-header-white {
  background-color: #ffffff;
}

.c-header-transparent {
  transition: all 0.3s ease-in-out;
}
.c-header-transparent .c-logo-white {
  display: block;
}
.c-header-transparent .c-logo-black {
  display: none;
}
.c-header-transparent.scrolling {
  background-color: #ffffff;
}
.c-header-transparent.scrolling .c-logo-white {
  display: none;
}
.c-header-transparent.scrolling .c-logo-black {
  display: block;
}
@media (min-width: 48em) {
  .c-header-transparent.scrolling {
    background-color: transparent;
  }
  .c-header-transparent.scrolling .c-logo-white {
    display: block;
  }
  .c-header-transparent.scrolling .c-logo-black {
    display: none;
  }
}

.c-branding {
  position: absolute;
  top: 15px;
}

.c-max-width .c-header--nav {
  position: absolute;
  right: 0;
  height: 60px;
}
@media (min-width: 70em) {
  .c-max-width .c-header--nav {
    right: 0;
  }
}

.c-header--nav {
  position: absolute;
  right: 25px;
  height: 60px;
}
@media (min-width: 70em) {
  .c-header--nav {
    right: 30px;
  }
}
.c-header--nav .c-icon--call {
  display: inline-block;
  margin: 15px 13px 0 0;
}
@media (min-width: 48em) {
  .c-header--nav .c-icon--call {
    display: none;
  }
}
.c-header--nav .c-icon--burger {
  display: inline-block;
  cursor: pointer;
  position: relative;
  top: -2px;
}
@media (min-width: 48em) {
  .c-header--nav .c-icon--burger {
    top: 20px;
  }
}

.page-front .l-header + .content {
  padding-top: 0;
}

.c-logo {
  width: 100px;
  height: 23px;
}

.c-burger {
  width: 30px;
  height: 22px;
}

.c-call {
  width: 18px;
  height: 29px;
}

.c-nav--close {
  width: 22px;
  height: 22px;
}

.x-img-fill {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #000;
  z-index: 2;
}

#slides-holder,
.slide {
  position: relative;
  width: 100%;
}
#slides-holder h1,
.slide h1 {
  color: #ffffff;
  top: 50%;
  transform: translate(0, -50%);
}

.slide,
.slide.fixed {
  top: 0;
  left: 0;
  width: 100%;
}

.slide {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide .info {
  position: absolute;
  width: 100%;
  padding: 0 20px;
  left: 0;
  z-index: 300;
  text-align: center;
  top: 40%;
  animation: fadeIn 1s both 0.5s;
}
@media (min-width: 48em) {
  .slide .info {
    width: 95%;
    padding: 0 40px;
    top: 40%;
  }
}
@media (min-width: 70em) {
  .slide .info {
    width: 55%;
    left: 10%;
    padding: 0;
    text-align: left;
    top: 22%;
    height: 440px;
  }
}
.slide.slide-footer {
  height: 100%;
}
@media (min-width: 48em) {
  .slide.slide-footer {
    height: 50vh !important;
  }
}
.slide .c-btn-clear--white {
  line-height: 20px;
  padding: 17px 50px 15px;
  display: inline-block;
  position: absolute;
  bottom: 20%;
  left: 32%;
}
@media (min-width: 48em) {
  .slide .c-btn-clear--white {
    padding: 30px 90px 30px;
    bottom: 7%;
    left: 10%;
  }
}

.slide.fixed {
  position: fixed;
}
.slide.slide-footer {
  overflow-x: scroll;
}

.slide-fake-height {
  position: relative;
  display: none;
}

.slide-fake-height.visible {
  display: block;
}

.fade-text {
  display: block;
  position: relative;
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 48em) {
  .fade-text {
    position: absolute;
    opacity: 0.6;
  }
}

.fixed .fade-text {
  opacity: 1;
}

#slide-1 {
  background-image: url("../assets/homepage/stylus.jpg");
}

#slide-2 {
  background-image: url("../assets/homepage/gms-homepage2.jpg");
}

#slide-3 {
  background-image: url("../assets/homepage/curve.jpg");
}

#slide-4 {
  background-image: url("../assets/homepage/Brinell_Slider.jpg");
}

#slide-5 {
  background-image: url("../assets/homepage/Cube-Dataroom-Hero.jpg");
}

#slide-6 {
  background-image: url("../assets/homepage/MECB_detail_HP.jpg");
}

.page-front .x-home-logo {
  position: fixed;
  top: 20px;
  left: 25px;
  z-index: 400;
  transition: all 1s ease-in-out;
}
@media (min-width: 48em) {
  .page-front .x-home-logo {
    top: 14%;
    left: 27%;
  }
}
@media (min-width: 70em) {
  .page-front .x-home-logo {
    left: 10%;
  }
}
.page-front .x-home-logo .x-logo {
  width: 100px;
}
@media (min-width: 48em) {
  .page-front .x-home-logo .x-logo {
    transition: all 1s ease-in-out;
    width: 300px;
  }
}
.page-front .x-home-logo .xyz {
  fill: white;
}
.page-front.scrolling .x-home-logo {
  top: 20px;
  left: 25px;
}
@media (min-width: 48em) {
  .page-front.scrolling .x-home-logo {
    top: 20px;
    left: 30px;
  }
}
.page-front.scrolling .x-home-logo .x-logo {
  width: 100px;
}
.page-front.scrolling .x-home-logo .xyz {
  fill: black;
}
@media (min-width: 48em) {
  .page-front.scrolling .x-home-logo .xyz {
    fill: white;
  }
}

.c-home-footer-button {
  z-index: 107;
}

.c-list-jobs {
  margin: 0 2rem 1rem 2rem;
  padding: 0;
}
.c-list-jobs li.c-job {
  list-style-type: none;
  background-color: #fafafa;
  padding: 20px;
  margin-bottom: 10px;
}
.c-list-jobs li.c-job:nth-child(odd) {
  background-color: #f0f0f0;
}

.c-block-70 {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 48em) {
  .c-block-70 {
    width: 90%;
  }
}
@media (min-width: 64em) {
  .c-block-70 {
    width: 70%;
  }
}

.c-jobs {
  position: relative;
  z-index: 40;
}
.c-jobs .c-jobs-info {
  display: block;
  width: 100%;
  color: #000000;
  padding: 30px 0 0 0;
}
@media (min-width: 48em) {
  .c-jobs .c-jobs-info {
    padding: 30px 0 60px;
  }
}
.c-jobs .c-jobs-info p {
  display: none;
}
@media (min-width: 48em) {
  .c-jobs .c-jobs-info p {
    display: block;
  }
}
.c-jobs .c-jobs-link {
  position: relative;
  left: 35px;
}
@media (min-width: 48em) {
  .c-jobs .c-jobs-link {
    position: absolute;
    bottom: 0;
    left: 25px;
  }
}

.page-jobs-article .alljobs {
  display: block;
  text-align: center;
}
@media (min-width: 48em) {
  .page-jobs-article .alljobs {
    display: none;
  }
}

.c-apply-form {
  background-color: black;
  padding: 1rem;
}
@media (min-width: 48em) {
  .c-apply-form {
    padding: 3rem;
    color: white;
  }
}
.c-apply-form label {
  padding-right: 20px;
  color: white;
}
.c-apply-form .form-item input {
  background-color: #2b2b2b;
  width: 100%;
  color: white;
}
.c-apply-form .form-item textarea {
  background-color: #2b2b2b;
  color: white;
  border: solid 0 transparent;
}

a.link {
  text-decoration: none;
  color: #000000;
}
a.link:hover {
  text-decoration: none;
  color: #f7dd02;
  cursor: pointer;
}

a.link-white {
  text-decoration: none;
  color: #ffffff;
}
a.link-white:hover {
  text-decoration: none;
  color: #f7dd02;
  cursor: pointer;
}

a.link-black {
  text-decoration: none;
  color: #000000;
}
a.link-black:hover {
  text-decoration: underline;
  color: #000000;
  cursor: pointer;
}

.c-nav--menu {
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  padding: 20px 25px;
  background-color: #f7dd02;
  text-align: right;
}
@media (min-width: 37.5em) {
  .c-nav--menu {
    max-width: 320px;
  }
}
.c-nav--menu.nav_visible {
  transform: translateX(0%);
}
.c-nav--menu .c-nav-content {
  width: 300px;
  right: 60px;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}
.c-nav--menu .c-nav-content li {
  font-size: 1.9444444444rem;
  list-style-type: none;
  font-weight: 800;
  padding-bottom: 20px;
}
.c-nav--menu .c-nav-content li a {
  display: block;
}
.c-nav--menu .c-nav-content li a:hover {
  color: #000000;
  text-decoration: underline;
}
.c-nav--menu .c-nav--close {
  cursor: pointer;
}
.c-nav--menu .c-nav--logo {
  text-align: left;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  left: 25px;
}
@media (min-width: 37.5em) {
  .c-nav--menu .c-nav--logo {
    display: none;
  }
}
.c-nav--menu .c-nav-contact {
  position: absolute;
  bottom: 40px;
  right: 60px;
}
.c-nav--menu .c-nav-contact a:hover {
  color: #000000;
  text-decoration: underline;
}
.c-nav--menu .c-nav-contact a.link-black:hover {
  text-decoration: none;
  cursor: default;
}

.l-news-list {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}
@media (min-width: 48em) {
  .l-news-list {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
  }
}
@media (min-width: 70em) {
  .l-news-list {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
  }
}

.c-news {
  position: relative;
  z-index: 40;
}
.c-news .c-news-img {
  width: 100%;
}
.c-news .c-news-info {
  display: block;
  width: 100%;
  color: #000000;
  padding: 30px 0 0 0;
}
@media (min-width: 48em) {
  .c-news .c-news-info {
    padding: 30px 0 60px;
  }
}
.c-news .c-news-info p {
  display: none;
}
@media (min-width: 48em) {
  .c-news .c-news-info p {
    display: block;
  }
}
.c-news .c-news-link {
  position: relative;
  left: 35px;
}
@media (min-width: 48em) {
  .c-news .c-news-link {
    position: absolute;
    bottom: 0;
    left: 25px;
  }
}

.page-news-article .allnews {
  display: block;
  text-align: center;
}
@media (min-width: 48em) {
  .page-news-article .allnews {
    display: none;
  }
}

.c-news--featured {
  position: relative;
  z-index: 40;
  display: none;
}
@media (min-width: 48em) {
  .c-news--featured {
    display: block;
    background-color: #000000;
  }
}
.c-news--featured:first-child .c-btn:after {
  content: "previous";
  position: relative;
}
.c-news--featured:last-child .c-btn:after {
  content: "next";
  position: relative;
}
.c-news--featured img {
  display: block;
  opacity: 0.4;
}
.c-news--featured .c-news-info {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 100;
  color: #ffffff;
  z-index: 40;
}
.c-news--featured .c-news-info .c-news-info--position {
  position: absolute;
  left: 0px;
  padding: 20px 50px;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  text-align: center;
}
.c-news--featured .c-news-info .c-btn {
  display: none;
}
@media (min-width: 48em) {
  .c-news--featured .c-news-info .c-btn {
    display: inline-block;
  }
}
.c-news--featured.solid .c-news-info {
  background-color: #f7dd02;
}

.l-people-list {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}
@media (min-width: 48em) {
  .l-people-list {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
  }
}
@media (min-width: 70em) {
  .l-people-list {
    grid-column: 1/-1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
  }
}

.c-person {
  grid-column: 1/-1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  position: relative;
  z-index: 40;
  margin: 0;
}
@media (min-width: 48em) {
  .c-person {
    grid-column: 1/5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
  }
}
@media (min-width: 70em) {
  .c-person {
    grid-column: 1/7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
  }
}
@media (min-width: 48em) {
  .c-person:nth-child(even) {
    grid-column: 5/9;
    -ms-grid-column: 5;
    -ms-grid-column-span: 4;
  }
}
@media (min-width: 70em) {
  .c-person:nth-child(even) {
    grid-column: 7/13;
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
  }
}
.c-person .c-person-img {
  width: 100%;
  line-height: 0;
}
.c-person .c-person-info {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  color: #000000;
  width: 100%;
  height: 100%;
  top: 0;
}
@media (min-width: 70em) {
  .c-person .c-person-info {
    display: block;
    z-index: 100;
    background-color: #f7dd02;
    color: #000000;
    opacity: 0;
    z-index: 40;
    transition: opacity 0.2s ease-in-out;
  }
}
.c-person .c-person-info .c-person-info--position {
  position: absolute;
  left: 0px;
  padding: 20px 50px;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  text-align: center;
}
.c-person .c-person-info h2 {
  margin-bottom: 5px;
  color: #ffffff;
}
@media (min-width: 70em) {
  .c-person .c-person-info h2 {
    color: #000000;
  }
}
.c-person .c-person-info p {
  color: #ffffff;
}
@media (min-width: 70em) {
  .c-person .c-person-info p {
    color: #000000;
  }
}
.c-person:hover .c-person-info {
  opacity: 1;
  z-index: 50;
}
.c-person .icons a {
  display: inline-block;
  padding: 10px 5px 0;
}
.c-person .icons a img {
  width: 30px;
}
.c-person .icons a img.linkedIn {
  width: 27px;
}
.c-person .icons.icons-mobile {
  display: block;
}
@media (min-width: 70em) {
  .c-person .icons.icons-mobile {
    display: none;
  }
}
.c-person .icons.icons-desktop {
  display: none;
}
@media (min-width: 70em) {
  .c-person .icons.icons-desktop {
    display: block;
  }
}
.c-person.c-solid-ad {
  background-color: #000000;
}
.c-person.c-solid-ad .c-person-info {
  opacity: 1;
  width: 100%;
  min-height: 290px;
  position: relative;
  background-color: transparent;
}
.c-person.c-solid-ad .c-person-info h2, .c-person.c-solid-ad .c-person-info p, .c-person.c-solid-ad .c-person-info a {
  color: #ffffff;
}
.c-person.c-solid-ad .c-person-info .c-person-info--position {
  padding: 20px 40px;
  width: 100%;
}
@media (min-width: 70em) {
  .c-person.c-solid-ad .c-person-info .c-person-info--position {
    padding: 20px 80px;
  }
}

.page-seo .c-standfirst a {
  text-decoration: underline;
}
.page-seo .c-seo-contact {
  text-align: center;
}

.c-service {
  position: relative;
  background-color: #f0f0f0;
  display: flex;
  display: -webkit-flex; /* NEW - Chrome */
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (min-width: 48em) {
  .c-service {
    flex-wrap: nowrap;
  }
}
.c-service:nth-child(even) {
  background-color: white;
}
.c-service .c-service-img {
  width: 100%;
  order: 1;
  position: relative;
}
@media (min-width: 48em) {
  .c-service .c-service-img {
    width: 50%;
    order: 2;
  }
}
.c-service .c-service-img .img-fill {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 48em) {
  .c-service .c-service-img .img-fill {
    display: none;
  }
}
.c-service .c-service-img .img-fill h2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  color: white;
  text-align: center;
}
.c-service .c-service-info {
  width: 100%;
  position: relative;
  order: 2;
}
@media (min-width: 48em) {
  .c-service .c-service-info {
    width: 50%;
    order: 1;
  }
}
.c-service .c-service-info .c-service-info--position {
  position: relative;
  padding: 30px 30px 70px 30px;
}
@media (min-width: 48em) {
  .c-service .c-service-info .c-service-info--position {
    position: absolute;
    left: 0px;
    padding: 20px 30px;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 64em) {
  .c-service .c-service-info .c-service-info--position {
    padding: 20px 50px;
  }
}
@media (min-width: 70em) {
  .c-service .c-service-info .c-service-info--position {
    padding: 20px 80px;
  }
}
.c-service .c-service-info .c-service-info--position .c-btn {
  padding: 20px;
}
@media (min-width: 48em) {
  .c-service .c-service-info .c-service-info--position .c-btn {
    padding: 10px 20px 12px;
  }
}
@media (min-width: 64em) {
  .c-service .c-service-info .c-service-info--position .c-btn {
    padding: 20px 50px 22px;
  }
}
.c-service .c-service-info .c-service-info--position h2 {
  display: none;
}
@media (min-width: 48em) {
  .c-service .c-service-info .c-service-info--position h2 {
    display: block;
  }
}
.c-service .c-service-img {
  line-height: 0;
}

.c-service:nth-child(even) .c-service-img {
  order: 1;
}
.c-service:nth-child(even) .c-service-info {
  order: 2;
}
@media (min-width: 48em) {
  .c-service:nth-child(even) .c-service-img {
    order: 1;
  }
  .c-service:nth-child(even) .c-service-info {
    order: 2;
  }
}

.c-slider .c-btn-clear--white {
  padding: 20px 70px 22px;
}
@media (min-width: 70em) {
  .c-slider .c-btn-clear--white {
    padding: 30px 90px 30px;
  }
}

.c-slider .c-slider-item .img-fill {
  height: 100vh;
  background: #000000;
  overflow: hidden;
  position: relative;
}
.c-slider .c-slider-item .img-fill .img-pos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  overflow: hidden;
}
.c-slider .c-slider-item .img-fill .img-pos img {
  position: relative;
  width: auto;
}
@media (min-width: 48em) {
  .c-slider .c-slider-item .img-fill .img-pos img {
    width: auto;
  }
}
@media only screen and (min-width: 1900px) {
  .c-slider .c-slider-item .img-fill .img-pos img {
    width: 100vw;
  }
}

.c-slider .slick-slide {
  width: 100%;
}
.c-slider .slick-slide .info {
  animation: fadeOut 0.2s both;
}
.c-slider .slick-slide.slick-active .info {
  animation: fadeIn 1s both 0.5s;
}

/* ==== Slider Info Transition === */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.c-slider-item img {
  transition: transform 0.4s ease-in-out;
}

.zoom:hover img {
  transform: scale(1.05);
}

.slick-slide {
  line-height: 0;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 300;
}

.slick-prev {
  left: 20px;
  background-image: url("../assets/icons/arrow-left-white.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 20px 39px;
}
@media (min-width: 70em) {
  .slick-prev {
    left: 40px;
  }
}
.slick-prev.slick-disabled {
  display: none !important;
}

.slick-next {
  right: 20px;
  background-image: url("../assets/icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 20px 39px;
}
@media (min-width: 70em) {
  .slick-next {
    right: 40px;
  }
}
.slick-next.slick-disabled {
  display: none !important;
}

.c-arrow-down {
  width: 20px;
  height: 39px;
  display: inline-block;
  position: absolute;
  top: calc(100vh - 60px);
  z-index: 310;
  left: 50%;
  transform: rotate(270deg);
}
.c-arrow-down img {
  width: auto;
}

.twitter-tweet {
  margin-top: 0 !important;
}

.nopad.grid--columns-2 .grid__item.c-work {
  margin-bottom: 2px;
}
@media (min-width: 48em) {
  .nopad.grid--columns-2 .grid__item.c-work {
    margin: 0;
  }
}

.c-work {
  position: relative;
  z-index: 40;
  transition: all 0.2s ease-in-out;
}
.c-work .c-work-img {
  line-height: 0;
  overflow: hidden;
}
.c-work .c-work-img img {
  transition: all 0.4s ease-in-out;
}
.c-work .c-work-info {
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  width: 100%;
  height: 100%;
  top: 0;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
@media (min-width: 70em) {
  .c-work .c-work-info {
    display: block;
    background-color: rgba(0, 0, 0, 0);
    z-index: 50;
  }
}
.c-work .c-work-info .c-work-info--position {
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 100%;
  padding: 20px 50px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 70em) {
  .c-work .c-work-info .c-work-info--position {
    bottom: -180px;
    padding: 0;
  }
}
.c-work .c-work-info .c-work-info--position .c-tag {
  margin-bottom: 0;
}
.c-work .c-work-info .c-btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 20px 0 0 0;
}
@media (min-width: 70em) {
  .c-work .c-work-info .c-btn {
    padding: 20px 40px 22px;
    margin: 20px 0;
  }
}
.c-work:hover {
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.c-work:hover .c-work-img img {
  transform: scale(1.02);
}
.c-work:hover .c-work-info {
  background-color: rgba(0, 0, 0, 0.2);
}
.c-work:hover .c-work-info--position {
  bottom: 0;
}

.slider-video {
  display: none;
}
@media (min-width: 48em) {
  .slider-video {
    display: inline-block;
  }
}

.c-hide-desk {
  display: inline-block;
}
@media (min-width: 48em) {
  .c-hide-desk {
    display: none;
  }
}

.c-filters {
  position: relative;
  display: inline-block;
}
@media (min-width: 48em) {
  .c-filters {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 350;
  }
}
.c-filters ul {
  display: inline-block;
  padding-left: 25px;
}
@media (min-width: 48em) {
  .c-filters ul {
    display: inline-block;
  }
}
.c-filters ul li {
  display: inline-block;
  margin-right: 25px;
}
@media (min-width: 48em) {
  .c-filters ul li {
    margin-right: 50px;
  }
}
.c-filters ul li:last-child {
  margin-right: 0;
}
.c-filters ul li a {
  font-size: 0.6666666667rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
}
.c-filters ul li a:hover {
  border-bottom: solid 2px #000000;
  text-decoration: none;
}
.c-filters ul li.selected a {
  border-bottom: solid 2px #f7dd02;
}

.loadMore {
  margin: 30px auto;
  text-align: center;
  width: 100%;
}

.c-work--featured {
  display: none;
}
@media (min-width: 48em) {
  .c-work--featured {
    position: relative;
    z-index: 40;
    background-color: #000000;
    display: block;
    overflow: hidden;
  }
}
.c-work--featured img {
  display: block;
  opacity: 0.4;
  transition: transform 0.4s ease-in-out;
}
.c-work--featured .c-work-info {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 100;
  color: #ffffff;
  z-index: 40;
}
.c-work--featured .c-work-info .c-work-info--position {
  position: absolute;
  left: 0px;
  padding: 20px 50px;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  text-align: center;
}
.c-work--featured .c-work-info .c-btn {
  display: none;
}
@media (min-width: 48em) {
  .c-work--featured .c-work-info .c-btn {
    display: inline-block;
  }
}

.weblink {
  font-weight: 800;
}

.img-chop img {
  line-height: 0;
}

.c-video-embed {
  position: relative;
}
.c-video-embed iframe {
  max-width: 100%;
  height: 290px;
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 48em) {
  .c-video-embed iframe {
    height: 450px;
  }
}
@media (min-width: 64em) {
  .c-video-embed iframe {
    height: 590px;
  }
}
@media (min-width: 70em) {
  .c-video-embed iframe {
    height: 809px;
  }
}

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