@charset "UTF-8";
/* ==== Buttons and text links === */
/* ==== Slide in transition === */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    position: relative;
    left: 100px;
  }
  100% {
    opacity: 1;
    position: relative;
    left: 0;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    position: relative;
    top: 100px;
  }
  100% {
    opacity: 1;
    position: relative;
    top: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes titleSlideIn {
  0% {
    opacity: 0;
    top: 0;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}
@font-face {
  font-family: "brown-thin";
  src: url("../fonts/Brown-Thin.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "brown-light";
  src: url("../fonts/Brown-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "brown-reg";
  src: url("../fonts/Brown-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "brown-bold";
  src: url("../fonts/Brown-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/*------------------------------------*\
  #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;
}

form {
  margin-bottom: 5%;
}
form input,
form textarea {
  padding: 12px 10px;
  width: 100%;
  display: block;
  font-family: "brown-light", sans-serif;
  font-size: 1rem;
  color: #263238;
  margin-bottom: 10px;
}
form textarea {
  height: 140px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #263238;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #263238;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #263238;
}

.c-form {
  position: relative;
}
.c-form .freeform-row {
  font-family: "brown-light", sans-serif;
  font-size: 1rem;
  color: #263238;
}
.c-form .freeform-row [class*=freeform-col-] {
  padding: 0;
}
.c-form .freeform-row .freeform-input {
  border-radius: 0;
  border: solid 1px transparent;
  background-color: #45535a;
  display: inline-block;
  color: white;
}
.c-form .freeform-row .freeform-fieldtype-email label,
.c-form .freeform-row .freeform-fieldtype-text label {
  display: inline-block;
  width: 85px;
  color: white;
}
.c-form .freeform-row .freeform-fieldtype-email .freeform-input,
.c-form .freeform-row .freeform-fieldtype-text .freeform-input {
  width: calc(100% - 90px);
}
.c-form .freeform-row .freeform-fieldtype-textarea label {
  display: inline-block;
  width: 100%;
  color: white;
}
.c-form .freeform-row .freeform-fieldtype-textarea .freeform-input {
  width: 100%;
}
.c-form .freeform-row .freeform-fieldtype-checkbox {
  margin-bottom: 5%;
}
.c-form .freeform-row .freeform-fieldtype-checkbox input {
  display: inline-block;
  width: 25px;
  vertical-align: top;
  margin: 0;
}
.c-form .freeform-row .freeform-fieldtype-checkbox label {
  font-size: 0.7777777778rem;
  line-height: 18px;
  width: calc(100% - 40px);
  vertical-align: top;
  display: inline-block;
  margin-bottom: 10px;
  text-align: left;
  color: white;
}
.c-form button {
  transition: all 0.3s ease-in-out;
  font-family: "brown-light", sans-serif;
  font-size: 0.8888888889rem;
  padding: 10px 30px;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  color: white;
  margin-top: 20px;
  border: solid 1px white;
  border-radius: 0;
  text-transform: uppercase;
}
.c-form button:hover {
  background-color: #f7dd02;
  color: #263238;
  text-decoration: none;
  border: solid 1px #f7dd02;
}
.c-form [data-freeform-controls] {
  justify-content: flex-start;
}

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

.c-required::before {
  content: "*";
  color: #D11E1E;
  position: absolute;
  left: -13px;
}

.l-flex-grid {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  width: 100%;
}

.grid__item {
  width: 100%;
  list-style-type: none;
  position: relative;
  display: block;
}
@media (min-width: 48em) {
  .grid__item {
    margin: 0 2% 3% 0;
    width: auto;
  }
}
@media (min-width: 83.375em) {
  .grid__item {
    margin: 0 2% 3% 0;
    width: auto;
  }
}
.grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .grid__item {
    width: 100%;
    list-style-type: none;
    position: relative;
    display: flex;
  }
}
@media (min-width: 48em) and (min-width: 48em) {
  .grid__item {
    margin: 0 2% 3% 0;
    width: auto;
  }
}
@media (min-width: 48em) and (min-width: 83.375em) {
  .grid__item {
    margin: 0 2% 3% 0;
    width: auto;
  }
}
@media (min-width: 48em) {
  .grid__item:last-child {
    margin-right: 0;
  }
}
.grid--columns-2 .grid__item {
  width: 100%;
  list-style-type: none;
  position: relative;
}
@media (min-width: 48em) {
  .grid--columns-2 .grid__item {
    margin: 0 2% 3% 0;
    width: auto;
  }
}
@media (min-width: 83.375em) {
  .grid--columns-2 .grid__item {
    margin: 0 2% 3% 0;
    width: auto;
  }
}
.grid--columns-2 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .grid--columns-2 .grid__item {
    width: 49%;
  }
  .grid--columns-2 .grid__item:nth-child(2n) {
    margin-right: 0;
  }
}

h1 {
  font-family: "brown-reg", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  line-height: 46px;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (min-width: 64em) {
  h1 {
    font-size: 2.7777777778rem;
    line-height: 62px;
  }
}
@media (min-width: 83.375em) {
  h1 {
    font-size: 3.3333333333rem;
    line-height: 70px;
  }
}
h1.c-onwhite {
  color: #263238;
}

h2 {
  font-family: "brown-reg", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6666666667rem;
  line-height: 37px;
  font-weight: normal;
  margin-bottom: 1rem;
}
@media (min-width: 83.375em) {
  h2 {
    font-size: 2.7777777778rem;
    line-height: 60px;
  }
}

h3 {
  font-family: "brown-reg", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.3333333333rem;
  line-height: 28px;
  font-weight: normal;
  margin-bottom: 1rem;
}
@media (min-width: 83.375em) {
  h3 {
    font-size: 2.2222222222rem;
    line-height: 50px;
  }
}

h4 {
  font-family: "brown-reg", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 24px;
  font-weight: normal;
}
@media (min-width: 83.375em) {
  h4 {
    font-size: 1.3333333333rem;
    line-height: 28px;
  }
}

.c-header-centered {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 48em) {
  .c-header-centered {
    margin-bottom: 100px;
  }
}

.c-100-block {
  display: block;
  width: 100%;
}

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

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

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

.h-width-80 {
  width: 80%;
}

.h-padtop-20 {
  padding-top: 20px;
}

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

.h-padbtm-50 {
  padding-bottom: 50px;
}

.h-padtop-100 {
  padding-top: 40px;
}
@media (min-width: 48em) {
  .h-padtop-100 {
    padding-top: 100px;
  }
}

.h-padbtm-100 {
  padding-bottom: 40px;
}
@media (min-width: 48em) {
  .h-padbtm-100 {
    padding-bottom: 100px;
  }
}

.h-marbtm-100 {
  margin-bottom: 40px;
}
@media (min-width: 48em) {
  .h-marbtm-100 {
    margin-bottom: 100px;
  }
}

.h-martop-100 {
  margin-top: 40px;
}
@media (min-width: 48em) {
  .h-martop-100 {
    margin-top: 100px;
  }
}

/*------------------------------------*\
  #IMAGES
\*------------------------------------*/
img {
  width: 100%;
  height: auto;
  line-height: 0;
}

/**
 * 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] */
  line-height: 1.4444444444; /* [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: #263238;
  font-family: "brown-light", sans-serif;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* Instead use this non-standard one: */
  word-break: break-word;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  line-height: 24px;
}
@media (min-width: 83.375em) {
  body {
    font-size: 1.2222222222rem;
    line-height: 28px;
  }
}

.c-max-width {
  margin: 0 auto;
  position: relative;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #263238;
}
a:hover {
  color: #BF4128;
}

@media (min-width: 48em) {
  .c-tel-link:hover {
    text-decoration: none;
    color: inherit;
    cursor: default;
  }
}

.c-success {
  color: #ffffff;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #469D5A;
}

.c-highlight-links a {
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
  color: #BDAF4D;
}
.c-highlight-links a:hover {
  color: #BF4128;
}

.c-text-centre {
  text-align: center;
}

/*------------------------------------*\
  #VARIOUS BLOCK STYLES
\*------------------------------------*/
@media (min-width: 64em) {
  body.home .l-content {
    margin-top: 0;
  }
}

.l-content {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 60px;
  background-color: #ffffff;
}
@media (min-width: 64em) {
  .l-content {
    margin-top: 80px;
  }
}

.l-row-wrap {
  width: 100%;
  position: relative;
  padding: 0;
}

.l-row-restricted {
  padding: 20px;
  width: 100%;
}
@media (min-width: 48em) {
  .l-row-restricted {
    width: calc(100% - 80px);
    margin: 0 40px;
    padding: 0;
  }
}
@media (min-width: 83.375em) {
  .l-row-restricted {
    margin: 0 auto;
    max-width: 1600px;
  }
}

.c-row-grey {
  background-color: #E9EAEA;
}

.c-row-black {
  background-color: black;
  color: white;
}

.c-row-darkgrey {
  background-color: #263238;
  color: #ffffff;
}
.c-row-darkgrey a {
  color: #ffffff;
}
.c-row-darkgrey a:hover {
  color: #BF4128;
}

.c-10-col {
  width: 100%;
  margin: 0;
  display: inline-block;
}
@media (min-width: 48em) {
  .c-10-col {
    width: calc(100% - 180px);
    margin: 0 90px;
  }
}
@media (min-width: 83.375em) {
  .c-10-col {
    width: calc(100% - 256px);
    margin: 0 128px;
  }
}

.c-scroll-icon {
  display: none;
}
@media (min-width: 48em) {
  .c-scroll-icon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    overflow: hidden;
  }
}
@media (min-width: 64em) {
  .c-scroll-icon {
    bottom: 50px;
  }
}
.c-scroll-icon img {
  animation: scrolldown 4s linear;
  animation-iteration-count: infinite;
}

@keyframes scrolldown {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(50px);
  }
}
.c-w-70 {
  width: 100%;
}
@media (min-width: 48em) {
  .c-w-70 {
    width: 80%;
  }
}
@media (min-width: 83.375em) {
  .c-w-70 {
    width: 70%;
  }
}

ul.nav-items {
  padding: 0;
}
ul.nav-items li.c-seo-block {
  display: inline-flex;
  width: 50%;
  margin-bottom: 20px;
  background-color: coral;
}
ul.nav-items li.c-seo-block:nth-child(odd) {
  margin-right: 20px;
  width: calc(50% - 20px);
}
ul.nav-items li.c-seo-block a {
  text-align: center;
  width: 100%;
  padding: 50px;
}

.c-5050-block {
  display: inline-block;
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 64em) {
  .c-5050-block {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: nowrap;
  }
}
@media (min-width: 83.375em) {
  .c-5050-block {
    margin-bottom: 100px;
  }
}
@media (min-width: 64em) {
  .c-5050-block.no-mar-btm {
    margin-bottom: 0;
  }
}
.c-5050-block .flex-container {
  display: inline-block;
  width: 100%;
}
@media (min-width: 64em) {
  .c-5050-block .flex-container {
    align-items: top;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: no-wrap;
  }
}
.c-5050-block .c-5050-left,
.c-5050-block .c-5050-right {
  position: relative;
  width: 100%;
}
@media (min-width: 64em) {
  .c-5050-block .c-5050-left,
  .c-5050-block .c-5050-right {
    flex: 0 1 50%;
    align-items: stretch;
    margin: 0;
  }
}
.c-5050-block .c-5050-left.has-image,
.c-5050-block .c-5050-left img,
.c-5050-block .c-5050-right.has-image,
.c-5050-block .c-5050-right img {
  line-height: 0;
}
@media (min-width: 48em) {
  .c-5050-block .c-5050-left.has-padding-right,
  .c-5050-block .c-5050-right.has-padding-right {
    padding-right: 100px;
  }
}
.c-5050-block .inside {
  max-width: 100%;
  padding-left: 0;
  position: relative;
  padding: 20px;
  text-align: center;
}
@media (min-width: 48em) {
  .c-5050-block .inside {
    text-align: left;
  }
}
@media (min-width: 64em) {
  .c-5050-block .inside {
    padding: 50px 50px 20px 50px;
  }
}
@media (min-width: 83.375em) {
  .c-5050-block .inside {
    padding: 60px 15% 20px 15%;
  }
}
.c-5050-block .inside h2 {
  text-align: center;
}
@media (min-width: 48em) {
  .c-5050-block .inside h2 {
    text-align: center;
  }
}
@media (min-width: 64em) {
  .c-5050-block .inside h2 {
    text-align: left;
  }
}
.c-5050-block:hover .c-btn-primary .c-arrow {
  transform: translateX(20px);
}
.c-5050-block:hover .c-btn-primary .button-arrow-1,
.c-5050-block:hover .c-btn-primary .button-arrow-2 {
  stroke: #BF4128;
}

.c-6040-block {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 48em) {
  .c-6040-block {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 100px;
  }
}
.c-6040-block .c-6040-left {
  position: relative;
  flex: 0 1 100%;
}
@media (min-width: 48em) {
  .c-6040-block .c-6040-left {
    flex: 0 1 46%;
    margin-left: 2%;
  }
}
@media (min-width: 64em) {
  .c-6040-block .c-6040-left {
    flex: 0 1 60%;
    margin-left: 8.3%;
  }
}
.c-6040-block .c-6040-right {
  position: relative;
  flex: 0 1 100%;
}
@media (min-width: 48em) {
  .c-6040-block .c-6040-right {
    flex: 0 1 46%;
    margin-left: 2%;
  }
}
@media (min-width: 64em) {
  .c-6040-block .c-6040-right {
    flex: 0 1 40%;
    margin-left: 8.3%;
    border-top: solid 2px #263238;
  }
}
.c-6040-block .c-4060-left {
  position: relative;
  flex: 0 1 100%;
  order: 2;
}
@media (min-width: 48em) {
  .c-6040-block .c-4060-left {
    flex: 0 1 46%;
    margin-left: 2%;
    order: 1;
  }
}
@media (min-width: 64em) {
  .c-6040-block .c-4060-left {
    flex: 0 1 40%;
    margin-right: 8.3%;
    border-top: solid 2px #263238;
  }
}
.c-6040-block .c-4060-right {
  position: relative;
  flex: 0 1 100%;
  order: 1;
}
@media (min-width: 48em) {
  .c-6040-block .c-4060-right {
    flex: 0 1 46%;
    margin-left: 2%;
    order: 2;
  }
}
@media (min-width: 64em) {
  .c-6040-block .c-4060-right {
    flex: 0 1 60%;
    margin-right: 8.3%;
  }
}

.c-subhero {
  padding: 40px 0 1px 0;
  margin-bottom: 40px;
}
@media (min-width: 64em) {
  .c-subhero {
    padding: 100px 0 1px 0;
    margin-bottom: 100px;
  }
}

.c-block-speak-5050 {
  text-align: center;
}
.c-block-speak-5050 .c-5050-block {
  margin-bottom: 0;
}
.c-block-speak-5050 .c-5050-left,
.c-block-speak-5050 .c-5050-right {
  padding: 50px 0;
}
@media (min-width: 64em) {
  .c-block-speak-5050 .c-5050-left,
  .c-block-speak-5050 .c-5050-right {
    padding: 100px 0;
  }
}

.c-block-speak {
  padding: 50px 0;
  background-color: #BF4128;
  color: white;
  margin-bottom: 0;
}
.c-block-speak .c-5050-left {
  padding: 0 8.3%;
}
.c-block-speak .c-5050-right {
  padding: 0 8.3%;
}
@media (min-width: 64em) {
  .c-block-speak .c-5050-right {
    padding: 0;
  }
}
.c-block-speak .c-5050-right p {
  font-size: 1.4444444444rem;
  font-family: "brown-light", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 36px;
}
@media (min-width: 64em) {
  .c-block-speak .c-5050-right p {
    padding-right: 30%;
  }
}
@media (min-width: 83.375em) {
  .c-block-speak .c-5050-right p {
    font-size: 2.2222222222rem;
    line-height: 50px;
    padding-right: 40%;
  }
}
.c-block-speak .c-5050-right .c-btn {
  margin: 0;
}

.l-content.service-website .c-block-speak {
  background-color: #D04714;
}
.l-content.service-website .c-service-color {
  background-color: #D04714;
  color: white;
}
.l-content.service-website .c-hero-split {
  background-color: #D04714;
  color: white;
}
.l-content.service-brand .c-block-speak {
  background-color: #4E253B;
}
.l-content.service-brand .c-service-color {
  background-color: #4E253B;
  color: white;
}
.l-content.service-brand .c-hero-title {
  text-align: left;
  padding-left: 40px;
}
.l-content.service-print .c-block-speak {
  background-color: #151E23;
}
.l-content.service-print .c-hero-split {
  background-color: #151E23;
  color: white;
}
.l-content.service-print .c-service-color {
  background-color: #151E23;
  color: white;
}
.l-content.service-startups .c-block-speak {
  background-color: #B22918;
}
.l-content.service-startups .c-service-color {
  background-color: #B22918;
  color: white;
}
.l-content.service-startups .c-hero-title {
  text-align: right;
}
.l-content.service-photography .c-block-speak {
  background-color: #D6AF0F;
}
.l-content.service-photography .c-service-color {
  background-color: black;
  color: white;
}
.l-content.service-photography .c-hero-title {
  text-align: left;
  padding-left: 40px;
}
.l-content.service-display .c-block-speak {
  background-color: #313449;
}
.l-content.service-display .c-service-display-hero {
  background-color: #313449;
  color: white;
}
.l-content.service-video .c-service-display-hero {
  background-color: #314C60;
  color: white;
}
.l-content.service-video .c-block-speak {
  background-color: #314C60;
  color: white;
}
.l-content.service-video .c-hero-split {
  background-color: #314C60;
  color: white;
}
.l-content.service-video .c-service-color {
  background-color: #314C60;
  color: white;
}
.l-content.service-copywriting .c-block-speak {
  background-color: #253F3D;
}
.l-content.about-us .c-block-speak {
  background-color: #4E253B;
}

.c-list-testimonials {
  display: block;
  margin: 0;
  padding: 0;
}
@media (min-width: 48em) {
  .c-list-testimonials {
    display: flex;
  }
}
.c-list-testimonials li {
  padding: 50px 0;
  border-top: solid 2px #263238;
  border-bottom: solid 2px #263238;
  position: relative;
  flex: 0 1 100%;
}
@media (min-width: 48em) {
  .c-list-testimonials li {
    flex: 0 1 50%;
  }
}
@media (min-width: 64em) {
  .c-list-testimonials li {
    flex: 0 1 41.6%;
    margin-right: 8.3%;
  }
}
.c-list-testimonials .c-author {
  font-style: italic;
}

.parallax {
  /* The image used */
  background-image: url(/assets/Starsinthesky_small.jpg);
  /* Set a specific height */
  max-height: 600px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 0;
}

.c-list-cards {
  position: relative;
}
.c-list-cards .c-card-more {
  display: block;
  width: 100%;
}
.c-list-cards .c-card-more.active .c-btn {
  display: none;
}

.c-hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  font-size: 0.8888888889rem;
  line-height: 24px;
}

.c-editEntry {
  background-color: #f7dd02;
  position: fixed;
  z-index: 350;
  width: 100%;
  top: 81px;
  font-size: 0.6666666667rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.c-editEntry.scrolling {
  top: 0;
}
.c-editEntry.scrolling_up {
  top: 81px;
}

.c-burger-bars {
  display: inline-block;
}

.c-burgermenu {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 6px;
  right: 0;
  z-index: 1010;
  height: 45px;
  width: 36px;
  padding: 14px 14px 14px 10px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 64em) {
  .c-burgermenu {
    top: 15px;
  }
}
@media (min-width: 83.375em) {
  .c-burgermenu {
    right: 20px;
  }
}
.c-burgermenu .bar1,
.c-burgermenu .bar2,
.c-burgermenu .bar3 {
  width: 25px;
  height: 2px;
  background-color: #263238;
  margin: 0 0 5px 0;
  transition: 0.4s;
}
.c-burgermenu .bar2 {
  width: 20px;
  margin-left: 5px;
}
.c-burgermenu:hover .bar1,
.c-burgermenu:hover .bar2,
.c-burgermenu:hover .bar3 {
  background-color: #263238;
}
.c-burgermenu:hover .bar2 {
  width: 25px;
  margin-left: 0px;
}
.c-burgermenu.change .bar1 {
  background-color: white;
  -webkit-transform: rotate(-45deg) translate(-5px, 4px);
  transform: rotate(-45deg) translate(-5px, 4px);
}
.c-burgermenu.change .bar2 {
  opacity: 0;
}
.c-burgermenu.change .bar3 {
  background-color: white;
  -webkit-transform: rotate(45deg) translate(-6px, -5px);
  transform: rotate(45deg) translate(-6px, -5px);
}

body.home .c-burgermenu .bar1,
body.home .c-burgermenu .bar2,
body.home .c-burgermenu .bar3 {
  background-color: #263238;
}
@media (min-width: 64em) {
  body.home .c-burgermenu .bar1,
  body.home .c-burgermenu .bar2,
  body.home .c-burgermenu .bar3 {
    background-color: white;
  }
}

body.home .scrolling_up .c-burgermenu .bar1,
body.home .scrolling_up .c-burgermenu .bar2,
body.home .scrolling_up .c-burgermenu .bar3 {
  background-color: #263238;
}

.c-btn {
  font-size: 0.8333333333rem;
  font-family: "brown-light", serif;
  font-weight: 500;
  font-style: normal;
  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: 15px 30px;
  }
}
@media (min-width: 83.375em) {
  .c-btn {
    margin: 20px 0;
  }
}
.c-btn:before, .c-btn:after {
  transition: all 0.5s ease-out;
  z-index: -1;
}

.c-btn-primary {
  color: #263238;
  border: solid 1px #263238;
  z-index: 50;
}
@media (min-width: 83.375em) {
  .c-btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    transform: translateX(-101%);
  }
}
.c-btn-primary:hover {
  color: #263238;
  border: solid 1px #f7dd02;
}
@media (min-width: 83.375em) {
  .c-btn-primary:hover {
    color: #263238;
    border: solid 1px #f7dd02;
  }
  .c-btn-primary:hover:before {
    transform: translateX(0);
    background-color: #f7dd02;
  }
}

.c-btn-secondary {
  color: #263238;
  padding: 0;
}
@media (min-width: 48em) {
  .c-btn-secondary {
    padding: 0;
  }
}
.c-btn-secondary:hover {
  color: #BF4128;
}

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

.c-btn-clear--white {
  color: white;
  border: solid 1px white;
}
@media (min-width: 83.375em) {
  .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: white;
  border: solid 1px #f7dd02;
}
@media (min-width: 83.375em) {
  .c-btn-clear--white:hover {
    color: #263238;
  }
  .c-btn-clear--white:hover:before {
    transform: translateX(0);
    background-color: #f7dd02;
  }
}

button.c-btn {
  transition: all 0.3s ease-in-out;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  color: white;
  margin-top: 20px;
  border: solid 1px white;
}
button.c-btn:hover {
  background-color: #f7dd02;
  color: #263238;
  text-decoration: none;
  border: solid 1px #f7dd02;
}

.c-title-arrow {
  font-size: 1.6666666667rem;
  line-height: 37px;
}
@media (min-width: 64em) {
  .c-title-arrow {
    font-size: 2.2222222222rem;
    line-height: 55px;
  }
}
.c-title-arrow.large-text {
  font-size: 1.6666666667rem;
  line-height: 37px;
}
@media (min-width: 64em) {
  .c-title-arrow.large-text {
    font-size: 2rem;
    line-height: 46px;
  }
}
.c-title-arrow.large-text .c-arrow {
  position: relative;
  top: 5px;
}
.c-title-arrow .c-arrow {
  position: relative;
  top: 4px;
  transform: translateX(0);
  transition: transform 0.5s linear;
}
.c-title-arrow .button-arrow-1,
.c-title-arrow .button-arrow-2 {
  fill: none;
  stroke: #263238;
  stroke-width: 2px;
  transition: all 0.3s ease-in-out;
}
.c-title-arrow .button-arrow-2 {
  stroke-miterlimit: 10;
}
.c-title-arrow:hover .c-arrow {
  transform: translateX(20px);
}
.c-title-arrow:hover .button-arrow-1,
.c-title-arrow:hover .button-arrow-2 {
  stroke: #BF4128;
}

#map {
  width: 100%;
  height: 540px;
}

footer {
  background-color: #263238;
  display: inline-block;
  width: 100vw;
  position: relative;
  font-size: 0.8888888889rem;
  line-height: 24px;
  color: #ffffff;
}
footer a {
  color: #ffffff;
}
@media (min-width: 64em) {
  footer {
    background-color: #E9EAEA;
    color: #263238;
  }
  footer a {
    color: #263238;
  }
}
footer ul {
  padding: 0;
  margin: 0;
}
footer ul li {
  list-style-type: none;
  display: block;
}
footer .l-row-restricted {
  padding: 20px;
}
@media (min-width: 48em) {
  footer .l-row-restricted {
    padding: 0 60px;
  }
}
@media (min-width: 64em) {
  footer .l-row-restricted {
    padding: 0 100px;
  }
}
@media (min-width: 83.375em) {
  footer .l-row-restricted {
    padding: 0 80px;
  }
}
footer .c-footer {
  padding: 50px 20px 20px;
}
@media (min-width: 64em) {
  footer .c-footer {
    padding: 100px 20px 20px;
  }
}
footer .c-copyright li {
  display: inline-block;
}
footer .c-copyright li:after {
  content: "|";
  padding-left: 5px;
}
footer .c-copyright li:last-child:after {
  content: "";
}

.c-footer-cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.c-footer-cols .box {
  flex: 1 0 100%;
}
@media (min-width: 48em) {
  .c-footer-cols .box {
    flex: 1 0 32%;
    padding-right: 20px;
  }
}
.c-footer-cols.c-reorder {
  margin-top: 0;
}
@media (min-width: 48em) {
  .c-footer-cols.c-reorder {
    margin-top: 20px;
  }
}
.c-footer-cols.c-reorder .box:nth-child(1) {
  order: 2;
}
@media (min-width: 48em) {
  .c-footer-cols.c-reorder .box:nth-child(1) {
    order: 1;
  }
}
.c-footer-cols.c-reorder .box:nth-child(2) {
  order: 2;
}
@media (min-width: 48em) {
  .c-footer-cols.c-reorder .box:nth-child(2) {
    order: 2;
  }
}
.c-footer-cols.c-reorder .box:nth-child(3) {
  order: 1;
}
@media (min-width: 48em) {
  .c-footer-cols.c-reorder .box:nth-child(3) {
    order: 3;
  }
}

.social {
  margin: 15px 0 30px 0;
}
.social a {
  text-decoration: none;
}
.social a:nth-child(1) .icon {
  width: 24px;
}
.social a:nth-child(2) .icon {
  width: 28px;
}
.social a:nth-child(3) .icon {
  width: 28px;
}
.social a:nth-child(4) .icon {
  width: 22px;
}
.social a:nth-child(5) .icon {
  width: 35px;
}
@media (min-width: 48em) {
  .social a:nth-child(1) .icon {
    width: 22px;
  }
  .social a:nth-child(2) .icon {
    width: 23px;
  }
  .social a:nth-child(3) .icon {
    width: 23px;
  }
  .social a:nth-child(4) .icon {
    width: 17px;
  }
  .social a:nth-child(5) .icon {
    width: 30px;
  }
}
@media (min-width: 64em) {
  .social a:nth-child(1) .icon {
    width: 25px;
  }
  .social a:nth-child(2) .icon {
    width: 28px;
  }
  .social a:nth-child(3) .icon {
    width: 28px;
  }
  .social a:nth-child(4) .icon {
    width: 22px;
  }
  .social a:nth-child(5) .icon {
    width: 35px;
  }
}
.social .icon {
  transition: all 0.3s ease-in-out;
  margin-right: 17px;
  display: inline-block;
  fill: #ffffff;
}
.social .icon:hover {
  fill: #BF4128;
}
@media (min-width: 48em) {
  .social .icon {
    margin-right: 11px;
  }
}
@media (min-width: 64em) {
  .social .icon {
    margin-right: 20px;
    fill: #263238;
  }
}

.l-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  z-index: 350;
  padding: 0 25px;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}
.l-header.scrolling {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-100%);
}
.l-header.scrolling_up {
  transform: translateY(0%);
}
@media (min-width: 64em) {
  .l-header {
    height: 80px;
    padding: 0 30px;
  }
}
.l-header .l-row-restricted {
  padding: 0 20px;
}
.l-header .c-header--block {
  height: 60px;
  position: relative;
}
@media (min-width: 64em) {
  .l-header .c-header--block {
    height: 80px;
  }
}
.l-header .c-header-phone {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 60px;
  text-align: right;
  height: 33px;
  z-index: 550;
  color: #263238;
}
.l-header .c-header-phone .c-header-phone-text {
  display: none;
}
@media (min-width: 64em) {
  .l-header .c-header-phone .c-header-phone-text {
    display: inline-block;
  }
}
.l-header .c-header-phone .c-header-phone-icon {
  display: inline-block;
}
@media (min-width: 64em) {
  .l-header .c-header-phone .c-header-phone-icon {
    display: none;
  }
}
.l-header .c-header-phone .c-header-phone-colour {
  fill: #263238;
}
.l-header .c-header-logo {
  fill: #263238;
}
.l-header.scrolling .c-header-logo {
  fill: #263238;
}
.l-header.menu-open .c-header-logo {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.l-header.menu-open .c-header-phone {
  color: white;
}

.c-branding {
  position: absolute;
  top: 18px;
  display: inline-block;
  overflow: hidden;
  z-index: 550;
}
@media (min-width: 64em) {
  .c-branding {
    top: 25px;
  }
}
@media (min-width: 83.375em) {
  .c-branding {
    left: 20px;
  }
}
.c-branding .c-header-logo {
  transition: all 0.3s ease-in-out;
  width: 150px;
}
@media (min-width: 64em) {
  .c-branding .c-header-logo {
    width: 170px;
    height: 23px;
  }
}

body.home .l-header {
  background-color: rgba(255, 255, 255, 0);
}
body.home .l-header .c-header-phone {
  color: white;
}
body.home .l-header .c-header-logo {
  fill: #263238;
}
@media (min-width: 64em) {
  body.home .l-header .c-header-logo {
    fill: white;
  }
}
body.home .l-header.scrolling {
  background-color: rgba(255, 255, 255, 0.9);
}
body.home .l-header.scrolling_up {
  transform: translateY(0%);
  background-color: rgba(255, 255, 255, 0.9);
}
body.home .l-header.scrolling_up .c-header-phone {
  color: #263238;
}
body.home .l-header.scrolling_up .c-header-logo {
  fill: #263238;
}
body.home .l-header.scrolling_up.menu-open .c-header-phone {
  color: white;
}
body.home .l-header.scrolling_up.menu-open .c-header-logo {
  fill: white;
}
body.home .l-header.scrolling_up.menu-open .c-burgermenu .bar1,
body.home .l-header.scrolling_up.menu-open .c-burgermenu .bar2,
body.home .l-header.scrolling_up.menu-open .c-burgermenu .bar3 {
  background-color: white;
}

.c-nav-mobile {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 2;
  width: 50px;
}
.c-nav-mobile .c-overlay-menu {
  transition: transform 0.5s ease-in-out;
  transform: translateY(-100%);
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background-color: #BF4128;
  height: 100vh;
  color: #263238;
}
.c-nav-mobile .c-nav-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 2;
}
.c-nav-mobile ul {
  font-family: "brown-reg", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.2222222222rem;
  line-height: 50px;
  list-style-type: none;
  margin-bottom: 2rem;
  padding: 0;
  transition: all 0.5s ease-in-out;
  width: 100%;
  display: block;
}
@media (min-width: 64em) {
  .c-nav-mobile ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }
}
.c-nav-mobile ul li a {
  display: block;
  color: white;
  position: relative;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.c-nav-mobile ul li a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #263238;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.c-nav-mobile ul li:hover a {
  color: #263238;
  text-decoration: none;
}
.c-nav-mobile ul li:hover a:after {
  transform: scaleX(1);
  transform-origin: bottom right;
}
.c-nav-mobile ul li.active a {
  color: #263238;
  border-bottom: solid 2px #263238;
}
.c-nav-mobile ul li.active li a {
  background-color: transparent;
  padding: 0;
}
.c-nav-mobile .c-header-logo {
  margin: 10px 20px;
  position: relative;
  top: 40px;
}
.c-nav-mobile.open {
  transform: inherit;
}
.c-nav-mobile.open .c-header-logo {
  margin: 20px 0;
}
@media (min-width: 48em) {
  .c-nav-mobile.open .c-header-logo {
    margin: 10px 20px;
  }
}
.c-nav-mobile.open .c-overlay-menu {
  transform: translateY(0%);
}

.c-img-opacity {
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  background-color: rgba(191, 65, 40, 0.8);
  z-index: 1;
}
.c-img-opacity.blue {
  background-color: rgba(49, 76, 96, 0.8);
}

.c-nav-opacity {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  background-color: rgba(191, 65, 40, 0.8);
  z-index: 1;
}
.c-nav-opacity.blue {
  background-color: rgba(49, 76, 96, 0.8);
}

.c-img-fill {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, background-image 0.3s ease-in-out;
  background-image: url("../assets/menu/menu1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-img-fill.Menu2 {
  background-image: url("../assets/menu/menu2.jpg");
}
.c-img-fill.Menu3 {
  background-image: url("../assets/menu/menu3.jpg");
}
.c-img-fill.Menu4 {
  background-image: url("../assets/menu/menu4.jpg");
}

/*------------------------------------*\
  #HERO
\*------------------------------------*/
.c-hero {
  width: 100%;
  line-height: 0;
  position: relative;
  background-color: black;
  overflow: hidden;
}
@media (min-width: 48em) {
  .c-hero {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 83.375em) {
  .c-hero {
    max-height: inherit;
  }
}
.c-hero.bkgd-blue {
  background-color: rgba(49, 76, 96, 0.8);
}
.c-hero .c-hero-title {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  padding: 0 5%;
  margin: auto;
  text-align: center;
  z-index: 2;
}
@media (min-width: 64em) {
  .c-hero .c-hero-title {
    padding: 0 15%;
  }
}
.c-hero .c-hero-title.view {
  color: red;
}
.c-hero .img-fill {
  overflow: hidden;
  width: 100%;
  line-height: 0;
}
@media (min-width: 48em) {
  .c-hero .img-fill {
    height: auto;
    max-height: 100vh;
  }
}
.c-hero .img-fill img {
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  height: 500px;
}
@media (min-width: 48em) {
  .c-hero .img-fill img {
    height: auto;
    width: 100vw;
  }
}
.c-hero iframe {
  max-width: 100vw;
}

.c-hero-video {
  width: 100%;
  line-height: 0;
  position: relative;
  background-color: black;
}
@media (min-width: 48em) {
  .c-hero-video {
    width: 100%;
    height: auto;
  }
}
.c-hero-video iframe {
  max-height: 100vh;
  height: auto;
}

.c-opacity-img img {
  min-height: 100vh;
  object-fit: cover;
}

.c-hero-img img {
  min-height: 100vh;
  object-fit: cover;
}

.c-hero-text {
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 64em) {
  .c-hero-text {
    height: calc(100vh - 80px);
    margin-bottom: 100px;
  }
}

iframe {
  border-width: 0;
}

.c-opaque-cover:before {
  background: black;
  opacity: 0.25;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
}

.c-home-feature-list .c-5050-block:last-child,
.c-wedo-block .c-5050-block:last-child {
  margin-bottom: 0;
}
.c-home-feature-list iframe,
.c-wedo-block iframe {
  width: 100%;
  height: 340px;
}
@media (min-width: 48em) {
  .c-home-feature-list iframe,
  .c-wedo-block iframe {
    width: 320px;
    height: 190px;
  }
}
@media (min-width: 64em) {
  .c-home-feature-list iframe,
  .c-wedo-block iframe {
    width: 460px;
    height: 270px;
  }
}
@media (min-width: 83.375em) {
  .c-home-feature-list iframe,
  .c-wedo-block iframe {
    width: 720px;
    height: 410px;
  }
}

.c-list-services {
  margin-top: 30px;
}
.c-list-services .c-thing {
  position: relative;
}
.c-list-services .c-thing:hover .c-btn-primary {
  color: white;
  background-color: red;
  cursor: pointer;
}

.video {
  background-size: cover;
  overflow: hidden;
  line-height: 0;
}
.video.c-vid-1 {
  background-image: url("../assets/videos/fourandco_service_1.jpg");
}
.video.c-vid-2 {
  background-image: url("../assets/videos/fourandco_service_2.jpg");
}
.video.c-vid-3 {
  background-image: url("../assets/videos/fourandco_service_3.jpg");
}
.video.c-vid-4 {
  background-image: url("../assets/videos/fourandco_service_4.jpg");
}

/* Hide Play button + controls on iOS */
video::-webkit-media-controls {
  display: none !important;
}

/*------------------------------------*\
  #LIST STYLING
\*------------------------------------*/
.c-list {
  margin: 0 0 20px;
  padding: 0;
}
.c-list li {
  list-style-type: none;
}

.c-list-cards li {
  margin-bottom: 20px;
}
.c-list-cards li h4 {
  margin-bottom: 0;
}

.no-csstransforms .c-nav--menu {
  transform: translateX(0%);
  right: 0;
}
.no-csstransforms .c-nav--menu.open {
  transform: translateX(0%);
  right: 100%;
}

.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: white;
  width: 100%;
  height: 100%;
  top: 0;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
@media (min-width: 83.375em) {
  .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: 83.375em) {
  .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: 83.375em) {
  .c-work .c-work-info .c-btn {
    padding: 15px 40px;
    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-color-set a {
  text-decoration: underline;
}

.c-services-list {
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-wrap: wrap;
}
.c-services-list .c-services-item {
  width: 100%;
}
@media (min-width: 48em) {
  .c-services-list .c-services-item {
    width: 41.5%;
    margin-right: 8.3%;
  }
}
.c-services-list .c-services-info {
  display: block;
  width: 100%;
  transition: all 0.4s ease-in-out;
  border-top: solid 2px #263238;
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (min-width: 83.375em) {
  .c-services-list .c-services-info {
    display: block;
    z-index: 50;
  }
}
.c-services-list .c-services-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: 83.375em) {
  .c-services-list .c-services-info .c-work-info--position {
    bottom: -180px;
    padding: 0;
  }
}
.c-services-list .c-services-info .c-work-info--position .c-tag {
  margin-bottom: 0;
}
.c-services-list:hover {
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.c-services-list:hover .c-work-img img {
  transform: scale(1.02);
}
.c-services-list:hover .c-work-info {
  background-color: rgba(0, 0, 0, 0.2);
}
.c-services-list:hover .c-work-info--position {
  bottom: 0;
}

.c-service-color {
  padding: 40px 0;
}
@media (min-width: 48em) {
  .c-service-color {
    padding: 100px 0;
  }
}

.c-service-5050 {
  display: flex;
  position: relative;
  flex-direction: column;
}
@media (min-width: 48em) {
  .c-service-5050 {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
  }
}
.c-service-5050 .c-5050-left {
  position: relative;
  flex: 0 1 100%;
}
@media (min-width: 48em) {
  .c-service-5050 .c-5050-left {
    flex: 0 1 50%;
  }
}
@media (min-width: 64em) {
  .c-service-5050 .c-5050-left {
    flex: 0 1 41.6%;
    margin-right: 8.3%;
  }
}
@media (min-width: 64em) {
  .c-service-5050 .c-5050-left.border-top {
    border-top: solid 2px white;
    padding-top: 20px;
  }
}
.c-service-5050 .c-5050-right {
  position: relative;
  flex: 0 1 100%;
}
@media (min-width: 48em) {
  .c-service-5050 .c-5050-right {
    flex: 0 1 50%;
    padding-left: 40px;
  }
}
@media (min-width: 64em) {
  .c-service-5050 .c-5050-right {
    flex: 0 1 41.6%;
    margin-left: 8.3%;
    padding-left: 0;
  }
}
@media (min-width: 64em) {
  .c-service-5050 .c-5050-right.border-top {
    border-top: solid 2px white;
  }
}

.c-services-outlines {
  padding: 0;
  margin: 0;
}
.c-services-outlines li {
  list-style-type: none;
  border-bottom: solid 2px white;
  padding: 10px 0;
}

.c-service-5070 {
  display: block;
  position: relative;
}
@media (min-width: 64em) {
  .c-service-5070 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: calc(100vh - 80px);
  }
}
.c-service-5070 .c-5070-left {
  position: relative;
  flex: 0 1 100%;
  padding: 20px 0;
}
@media (min-width: 48em) {
  .c-service-5070 .c-5070-left {
    flex: 0 1 50%;
  }
}
@media (min-width: 64em) {
  .c-service-5070 .c-5070-left {
    flex: 0 1 33.3%;
    margin-right: 8.3%;
    padding: 0;
  }
}
.c-service-5070 .c-5070-right {
  position: relative;
  flex: 0 1 100%;
}
@media (min-width: 48em) {
  .c-service-5070 .c-5070-right {
    flex: 0 1 50%;
  }
}
@media (min-width: 64em) {
  .c-service-5070 .c-5070-right {
    flex: 0 1 58.3%;
  }
}

.c-hero-split {
  background-color: black;
  padding-bottom: 40px;
}
@media (min-width: 64em) {
  .c-hero-split {
    height: calc(100vh - 80px);
    padding-bottom: 0;
  }
}

.c-service-display-hero {
  width: 100vw;
}
@media (min-width: 48em) {
  .c-service-display-hero {
    background-image: url(/assets/whatwedo/hero-display.png);
    background-size: 100vw;
    background-position: top right;
    background-repeat: no-repeat;
    height: calc(100vh - 80px);
  }
}
@media (min-width: 48em) {
  .c-service-display-hero {
    background-size: 50vw auto;
    background-position: top right;
    width: 100vw;
    height: calc(100vh - 80px);
  }
}
.c-service-display-hero .xx {
  width: 100%;
}
@media (min-width: 48em) {
  .c-service-display-hero .xx {
    width: 50%;
    padding-top: 10%;
  }
}
@media (min-width: 64em) {
  .c-service-display-hero .xx {
    width: 41.66%;
  }
}

.c-colour-copywriting {
  background-color: #253F3D;
  color: white;
}

.c-service-5050-full {
  display: flex;
  position: relative;
  flex-direction: column;
}
@media (min-width: 48em) {
  .c-service-5050-full {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
  }
}
.c-service-5050-full .c-5050-left {
  position: relative;
  flex: 0 1 100%;
  margin: 40px 0;
}
@media (min-width: 48em) {
  .c-service-5050-full .c-5050-left {
    flex: 0 1 50%;
    margin: 100px 0;
  }
}
@media (min-width: 64em) {
  .c-service-5050-full .c-5050-left {
    flex: 0 1 41.6%;
    margin-right: 8.3%;
    border-top: solid 2px white;
    padding-top: 20px;
  }
}
.c-service-5050-full .c-5050-right {
  position: relative;
  flex: 0 1 100%;
  line-height: 0;
}
@media (min-width: 48em) {
  .c-service-5050-full .c-5050-right {
    flex: 0 1 50%;
  }
}
@media (min-width: 64em) {
  .c-service-5050-full .c-5050-right {
    flex: 0 1 50%;
  }
}

@media (min-width: 64em) {
  .gallery-display .c-5050-left {
    flex: 0 1 45.75%;
    margin-right: 4.15%;
  }
}
@media (min-width: 64em) {
  .gallery-display .c-5050-right {
    flex: 0 1 45.75%;
    margin-left: 4.15%;
  }
}

.c-div-childflex {
  display: flex;
  justify-content: space-between;
  flex-flow: column wrap;
  height: 100%;
}

.c-block-alsolike {
  margin-bottom: 100px;
}
.c-block-alsolike .c-alsolike-item {
  display: inline-block;
}
@media (min-width: 64em) {
  .c-block-alsolike .c-alsolike-item {
    width: 41.6%;
    margin-right: 8%;
  }
}

.service-photography .c-bkgd-black {
  background-color: black;
}
.service-photography .c-bkgd-black .c-5050-block {
  margin-bottom: 0;
}
.service-photography .c-block-alsolike .c-btn-primary {
  color: white;
  border-color: white;
}
.service-photography .c-block-alsolike .c-btn-primary:hover {
  color: #263238;
  border-color: #f7dd02;
}

@media (min-width: 64em) {
  img.c-border {
    max-height: 416px;
    object-fit: cover;
  }
}

.c-video-embed {
  position: relative;
}
.c-video-embed iframe {
  width: 100%;
}

.c-slider .c-slider-item {
  position: relative;
  width: 100%;
}
@media (min-width: 48em) {
  .c-slider .c-slider-item {
    width: 94vw;
    margin-right: 10px;
  }
}
.c-slider .c-slider-item img {
  position: relative;
  max-width: none;
}
@media (min-width: 48em) {
  .c-slider .c-slider-item img {
    width: auto;
  }
}

/* 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/arrow-left-white.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 20px 39px;
}
@media (min-width: 83.375em) {
  .slick-prev {
    left: 40px;
  }
}
.slick-prev.slick-disabled {
  display: none !important;
}

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

.slick-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 0%);
  padding-left: 0;
  list-style-type: none;
}
.slick-dots li {
  display: inline-block;
  margin: 0 20px 0 0;
}
@media (min-width: 48em) {
  .slick-dots li {
    margin: 0 15px 0 0;
  }
}
.slick-dots li:last-child {
  margin: 0;
}
.slick-dots button {
  display: block;
  width: 21px;
  height: 21px;
  padding: 0;
  background: transparent url("../assets/dot-default.png") no-repeat 0;
  border: solid 0 transparent;
  border-radius: 50%;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background: transparent url("../assets/dot-active.png") no-repeat 0;
  border: solid 0 transparent;
}

.c-slider-team .c-slider-item {
  margin: 0 10px;
}
@media (min-width: 48em) {
  .c-slider-team .c-slider-item {
    margin: 0 20px;
  }
}
.c-slider-team .c-slider-img {
  margin-bottom: 10px;
}
.c-slider-team .slick-prev,
.c-slider-team .slick-next {
  top: -54px;
  transform: translate(0);
  background-color: #BF4128;
  background-position: center;
  height: 50px;
}
.c-slider-team .slick-prev {
  left: initial;
  right: 63px;
}
.c-slider-team .slick-next {
  right: 20px;
}

.c-jump-position {
  margin-top: -80px;
  position: absolute;
}

.c-whatwedo-list .c-icon {
  display: block;
  width: 87px;
  margin: 0 auto 30px;
}
@media (min-width: 64em) {
  .c-whatwedo-list .c-icon {
    display: none;
  }
}
.c-whatwedo-list .has-icon {
  display: none;
}
@media (min-width: 64em) {
  .c-whatwedo-list .has-icon {
    display: block;
  }
}
.c-whatwedo-list .has-icon .c-icon {
  display: none;
}
@media (min-width: 64em) {
  .c-whatwedo-list .has-icon .c-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.c-whatwedo-list .inside {
  padding: 60px 20px 20px;
}
@media (min-width: 37.5em) {
  .c-whatwedo-list .inside {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 64em) {
  .c-whatwedo-list .inside {
    padding: 50px 50px 20px;
  }
}
@media (min-width: 83.375em) {
  .c-whatwedo-list .inside {
    padding: 60px 15% 20px;
  }
}
.c-whatwedo-list .magic-space {
  position: relative;
  line-height: 0;
  width: 100%;
  height: 100%;
}
.c-whatwedo-list .magic-space video {
  width: 100%;
}
.c-whatwedo-list .c-5050-block {
  display: flex;
  flex-direction: column;
  transition: all 0.1s ease-in;
}
@media (min-width: 64em) {
  .c-whatwedo-list .c-5050-block {
    flex-direction: row;
  }
  .c-whatwedo-list .c-5050-block:nth-child(3n+1) .has-icon path,
  .c-whatwedo-list .c-5050-block:nth-child(3n+1) .has-icon line {
    stroke: white;
  }
  .c-whatwedo-list .c-5050-block:nth-child(3n+1) .magic-space {
    background-color: #000;
  }
  .c-whatwedo-list .c-5050-block:nth-child(3n+2) .magic-space {
    background-color: #E9EAEA;
  }
  .c-whatwedo-list .c-5050-block:nth-child(3n+3) .magic-space {
    background-color: #CECECE;
  }
}
.c-whatwedo-list .c-5050-block:last-child {
  margin-bottom: 0;
}

.read-more-wrap .read-more-state {
  display: none;
}
@media (min-width: 64em) {
  .read-more-wrap .read-more-state ~ .c-ellipsis .read-more-trigger:before,
  .read-more-wrap .read-more-state ~ * .c-ellipsis .read-more-trigger:before {
    content: "…" " ";
    color: #444;
  }
  .read-more-wrap .read-more-state ~ .read-more-trigger,
  .read-more-wrap .read-more-state ~ * .read-more-trigger {
    cursor: pointer;
    color: #008dec;
    max-width: 670px;
    margin-bottom: 0.25em;
  }
  .read-more-wrap .read-more-state ~ .read-more-trigger:hover, .read-more-wrap .read-more-state ~ .read-more-trigger:focus, .read-more-wrap .read-more-state ~ .read-more-trigger:active,
  .read-more-wrap .read-more-state ~ * .read-more-trigger:hover,
  .read-more-wrap .read-more-state ~ * .read-more-trigger:focus,
  .read-more-wrap .read-more-state ~ * .read-more-trigger:active {
    color: #ff4500;
  }
  .read-more-wrap .read-more-state ~ .read-more-trigger:after,
  .read-more-wrap .read-more-state ~ * .read-more-trigger:after {
    content: "";
    white-space: nowrap;
    background-image: url("../assets/arrow-down.svg");
    background-repeat: no-repeat;
    width: 31px;
    height: 50px;
    display: block;
    transform: translateY(0);
    transition: transform 0.5s linear;
  }
  .read-more-wrap .read-more-state ~ .read-more-trigger:hover:after,
  .read-more-wrap .read-more-state ~ * .read-more-trigger:hover:after {
    transform: translateY(20px);
  }
  .read-more-wrap .read-more-state ~ .read-more-target,
  .read-more-wrap .read-more-state ~ * .read-more-target {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    transition: all 0.4s linear;
  }
  .read-more-wrap .read-more-state:checked ~ * .read-more-target,
  .read-more-wrap .read-more-state:checked ~ .read-more-target {
    opacity: 1;
    max-height: 999em;
    font-size: inherit;
    visibility: visible;
  }
  .read-more-wrap .read-more-state:checked ~ .read-more-trigger:after,
  .read-more-wrap .read-more-state:checked ~ * .read-more-trigger:after {
    content: "";
    background-image: url("../assets/arrow-up.svg");
  }
}

.c-100-block iframe {
  width: 100%;
  height: 340px;
}
@media (min-width: 48em) {
  .c-100-block iframe {
    height: 494px;
  }
}
@media (min-width: 64em) {
  .c-100-block iframe {
    height: 580px;
  }
}
@media (min-width: 83.375em) {
  .c-100-block iframe {
    height: 720px;
  }
}

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