@charset "UTF-8";
/* SCSS Document */
/* MICROSOFT NONSENSE */
/* MIXINS -------------------- */
/* RESET STYLES -------------------- */
html, body, ul, ol, li h1,
h2, h3, h4 {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, button, select, textarea, fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
}

/* VARIABLES -------------------- */
/* FONT INFO --------------------
Gotham
Book 	- 400
Bold 	- 700
Ultra 	- 900
------------------------------ */
/* ELEMENT STYLES -------------------- */
* {
  font-family: "Gotham", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-wrap: pretty;
}
*:focus {
  outline: none !important;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

sup {
  position: relative;
  vertical-align: top;
  font-size: 0.6em;
  top: -0.4em;
}

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  cursor: pointer;
}
a img {
  border: none;
}
a.yellow {
  color: #FFDC00;
}
a.yellow:hover {
  color: #BDBFBF;
}

html, body {
  text-align: center;
  background-color: #FFDC00;
  color: #000000;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  width: 100vw;
  position: relative;
  z-index: 9;
}

h1, h2, h3 {
  font-weight: 600;
  font-style: normal;
  line-height: 1em;
  text-wrap: balance;
  width: 100%;
}

h1 {
  font-size: 5em;
  text-align: left;
  font-weight: 900;
}

h2 {
  font-size: 3em;
  line-height: 1.2em;
}
h2.has-goddamn-font-size {
  font-weight: 900;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 2em;
  font-weight: 300;
  line-height: 1.2em;
}

/* GENERAL STYLES -------------------- */
.inner {
  width: 92%;
  margin: 0 auto; /*max-width: 1200px;*/
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  gap: 1.5em;
}

/* LOADER STYLES -------------------- */
#loader {
  width: 100vw;
  height: 0vh;
  position: fixed;
  left: 0;
  top: -20vh;
  background-color: #F2F2F2;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  color: #FFFFFF;
}
#loader div {
  position: relative;
  opacity: 1;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
}
#loader div lottie-player {
  height: 0;
}
#loader.fadein div {
  opacity: 1;
}
#loader.pullin {
  height: 140vh;
}
#loader.pullin div lottie-player {
  height: auto;
}

/* HEADER STYLES -------------------- */
header {
  width: 100vw;
  z-index: 99998;
  position: fixed;
  top: 0;
  left: 0;
}
header .inner {
  margin-top: 3em;
}
header .inner #logo {
  height: 2em;
  width: auto;
}
header .inner #logo path {
  transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
}
header .inner #rightside {
  grid-column: col-start 11/span 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5em;
}
header .inner #rightside #letstalk {
  height: 2em;
  width: auto;
}
header .inner #rightside #letstalk path {
  transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
}
header .inner #rightside #navtrig {
  width: 40px;
  height: 26px;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  cursor: pointer;
  z-index: 9999;
  display: block;
  position: relative;
}
header .inner #rightside #navtrig span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #000000;
  opacity: 1;
  left: 0;
  transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
}
header .inner #rightside #navtrig span:nth-child(1) {
  top: 0px;
}
header .inner #rightside #navtrig span:nth-child(2) {
  top: 23px;
}
header .inner #rightside #navtrig.open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
header .inner #rightside #navtrig.open span:nth-child(2) {
  top: 10px;
  transform: rotate(-45deg);
}
header.light .inner #logo path {
  fill: #FFFFFF;
}
header.light .inner #rightside #letstalk path {
  fill: #FFFFFF;
}
header.light .inner #rightside #navtrig span {
  background-color: #FFFFFF;
}
header.nav .inner #logo path {
  fill: #000000;
}
header.nav .inner #rightside #letstalk path {
  fill: #000000;
}
header.nav .inner #rightside #navtrig span {
  background-color: #000000;
}

/* NAV STYLES -------------------- */
nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  background-color: #FFDC00;
  height: 100vh;
  width: 0;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  display: flex;
  align-items: center;
}
nav.open {
  width: 100vw;
}
nav .inner #mainav {
  grid-column: col-start/span 12;
  font-weight: 900;
  display: none;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  text-align: left;
  font-size: 10vh;
  width: 100%;
  max-width: 600px;
}
nav .inner #mainav li {
  line-height: 1.25em;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
}
nav .inner #mainav li a {
  display: block;
  transform: translateY(1.25em);
  position: relative;
  opacity: 0;
  transition: transform 0.25s ease-out;
  -moz-transition: transform 0.25s ease-out;
  -webkit-transition: transform 0.25s ease-out;
}
nav .inner #mainav li a:hover {
  color: #FFFFFF;
}
nav .inner #mainav li.fadeup a {
  transform: translateY(0);
  opacity: 1;
}
nav .inner #mainav li:hover {
  text-indent: 1em;
}
nav .inner #mainav.reveal {
  display: block;
}
nav .inner .social {
  width: 100%;
  display: none;
  gap: 2em;
  margin-top: 6em;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  opacity: 0;
}
nav .inner .social a:hover {
  color: #FFFFFF;
}
nav .inner .social.reveal {
  display: flex;
}
nav .inner .social.fadeup {
  opacity: 1;
}

/* CONTENT STYLES -------------------- */
main {
  background-color: #FFFFFF;
  min-height: 1000px;
}
main #blockcont {
  width: 100%;
}
main #blockcont .entry-content {
  display: flex;
  flex-wrap: wrap;
}
main #blockcont .entry-content section {
  width: 100%;
  display: block;
  margin: 0;
}
main #blockcont .entry-content section.tight {
  padding: 4em 0 !important;
}
main #blockcont .entry-content section .wp-block-group__inner-container,
main #blockcont .entry-content section .wp-block-columns {
  width: 92%;
  margin: 0 auto; /*max-width: 1200px;*/
}
main #blockcont .entry-content section .wp-block-group__inner-container .wp-block-list,
main #blockcont .entry-content section .wp-block-columns .wp-block-list {
  text-align: left;
}
main #blockcont .entry-content section .wp-block-group__inner-container .wp-block-column figure img,
main #blockcont .entry-content section .wp-block-columns .wp-block-column figure img {
  width: 100%;
}
main #blockcont .entry-content section .wp-block-video video {
  width: 100%;
  height: calc(100vh - 12em);
}
main #blockcont .entry-content section .wp-block-video video::-webkit-media-controls-enclosure {
  display: none !important;
}
main #blockcont .entry-content section.heading { /*aspect-ratio: 144/67;*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 !important;
}
main #blockcont .entry-content section.fullimg {
  display: flex;
}
main #blockcont .entry-content section.fullimg .wp-block-image {
  width: 100%;
  display: contents;
}
main #blockcont .entry-content section.fullimg .wp-block-image img {
  width: 100vw;
  aspect-ratio: 144/67;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
main #blockcont .entry-content section.narrow .wp-block-columns {
  width: 80%; /*max-width: 900px;*/
}
main #blockcont .entry-content section.has-white-color h1 span {
  color: #FFDC00;
}
main #blockcont .entry-content section.has-black-background-color a {
  color: #FFFFFF;
}
main #blockcont .entry-content section .wp-block-gmap-gmap-block {
  margin-top: 5em;
  filter: grayscale(1);
}
main #blockcont .entry-content section .colourin {
  font-size: 2vw;
  line-height: 1.5em;
}
main #blockcont .entry-content section .colourin .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
}
main #blockcont .entry-content section .colourin.lgrey .mask {
  background: rgba(242, 242, 242, 0.75);
}
main #blockcont .entry-content section.wp-block-create-block-our-work {
  background-color: #FFFFFF;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner { /*max-width: 900px;*/ }
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul {
  display: flex;
  flex-direction: column;
  grid-column: col-start/span 12;
  margin: 3rem 0;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li {
  width: 100%;
  margin: 3rem 0;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a {
  width: 100%;
  display: block;
  cursor: pointer;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a .frame {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a .frame img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  margin: 0;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a .copy {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a .copy h3 {
  font-size: 1vw;
  line-height: 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  margin-right: 1em;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a .copy h3::before {
  content: "→ ";
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a .copy p {
  font-size: 1vw;
  line-height: 1.5em;
  margin: 0;
  text-align: right;
}
main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a:hover img {
  width: 110%;
  margin: -5%;
}
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner { /*max-width: 1200px;*/ }
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner ul {
  -moz-column-gap: 2.5%;
       column-gap: 2.5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 8rem;
}
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner ul li { /*opacity: 0; scale: 0.9; filter: blur(3px);*/ }
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner ul li:nth-of-type(odd) {
  transform: translateY(6em);
}
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner ul li:nth-of-type(even) {
  transform: translateY(12em);
}
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner ul li a .copy {
  display: block;
}
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner ul li a .copy h3 {
  width: 100%;
  text-align: left;
}
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner ul li a .copy h3::before {
  content: none;
}
main #blockcont .entry-content section.wp-block-create-block-our-work.twocol .inner ul li a .copy p {
  width: 100%;
  text-align: left;
}
main #blockcont .entry-content section.wp-block-create-block-other-work {
  background-color: #F2F2F2;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner h2 {
  text-align: center;
  width: 100%;
  grid-column: col-start/span 12;
  font-size: 2em;
  margin-top: 2em;
  text-transform: uppercase;
  position: relative;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner h2 .discmore {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  line-height: 1em;
  font-size: 0.75rem;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul {
  grid-column: col-start/span 12;
  margin: 3rem 0;
  -moz-column-gap: 2.5%;
       column-gap: 2.5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 8rem;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li {
  width: 100%;
  margin: 3rem 0;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li:nth-of-type(odd) {
  transform: translateY(6em);
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li:nth-of-type(even) {
  transform: translateY(12em);
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li a {
  width: 100%;
  display: block;
  cursor: pointer;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li a .frame {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li a .frame img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  margin: 0;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li a .copy {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li a .copy h3 {
  font-size: 1vw;
  line-height: 1.5em;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  margin-right: 1em;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li a .copy h3::before {
  content: none;
}
main #blockcont .entry-content section.wp-block-create-block-other-work .inner ul li a:hover img {
  width: 110%;
  margin: -5%;
}

/* CONTACT STYLES -------------------- */
#contact {
  background-color: #FFDC00;
  color: #000000;
  padding: 6em 0;
  position: fixed;
  left: 0;
  z-index: -1;
  width: 100vw;
}
#contact .inner {
  display: flex;
  grid-template-columns: none;
  gap: unset;
}
#contact .inner .col {
  width: 100%;
  max-width: 700px;
  text-align: left;
}
#contact .inner .col h3 {
  margin-bottom: 2em;
  text-transform: uppercase;
}
#contact .inner .col a {
  font-size: 2.5em;
  font-weight: 700;
  color: #000000;
  line-height: 1.25em;
  display: block;
}
#contact .inner .col a:hover {
  color: #FFFFFF;
}

/* FOOTER STYLES -------------------- */
footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 4em 0;
}
footer .inner .col {
  display: flex;
}
footer .inner .col:first-of-type {
  grid-column: col-start/span 9;
  align-items: flex-start;
}
footer .inner .col:last-of-type {
  grid-column: col-start 10/span 3;
  align-items: flex-end;
}
footer .inner .col .signup {
  text-align: left;
}
footer .inner .col .signup h4 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
footer .inner .col .signup form input {
  color: #FFFFFF;
}
footer .inner .col .signup form input::-moz-placeholder {
  color: #FFFFFF;
}
footer .inner .col .signup form input::placeholder {
  color: #FFFFFF;
}
footer .inner .col .signup form input:-webkit-autofill, footer .inner .col .signup form input:-webkit-autofill:hover, footer .inner .col .signup form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
}
footer .inner .col .signup form button {
  color: #FFDC00;
  text-transform: uppercase;
  display: block;
  margin-top: 1em;
  cursor: pointer;
  transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
}
footer .inner .col .signup form button:hover {
  color: #FFDC00;
}
footer .inner .col .social {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 2em;
  margin-top: 2em;
}
footer .inner .col a {
  color: #FFFFFF;
}
footer .inner .col a.yellow {
  color: #FFDC00;
}
footer .inner .col a:hover {
  color: #FFDC00;
}
footer .inner .col address {
  text-align: left;
}
footer .inner .col address strong {
  display: block;
}
footer .inner .col .legal {
  text-align: left;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #FFFFFF;
  position: relative;
}
footer .inner .col .legal .mask {
  position: absolute;
  top: -3px;
  right: 0;
  width: 80%;
  height: 4px;
  background-color: #000000;
}
footer .inner .col .legal strong {
  display: block;
}

/* Tablet Styles -------------------- */
/* Phone Styles -------------------- */
@media only screen and (max-width: 819px) {
  h3 {
    font-size: 1.5em;
  }
  .inner {
    width: 90%;
    display: block;
    grid-template-columns: none;
    gap: unset;
  }
  /* HEADER STYLES -------------------- */
  header .inner a {
    position: absolute;
    left: 0;
  }
  header .inner a #logo {
    height: 1.5em;
  }
  header .inner #rightside {
    position: absolute;
    right: 0;
  }
  header .inner #rightside a {
    display: none;
  }
  /* NAV STYLES -------------------- */
  nav .inner #mainav {
    font-size: 8vh;
  }
  nav .inner .social {
    margin-top: 2em;
  }
  /* CONTENT STYLES -------------------- */
  main #blockcont .entry-content section .wp-block-columns {
    width: 90%;
  }
  main #blockcont .entry-content section.fullimg .wp-block-image img {
    aspect-ratio: 1/1 !important;
  }
  main #blockcont .entry-content section.narrow .wp-block-columns {
    width: 90%;
  }
  main #blockcont .entry-content section.narrow .wp-block-columns .awards li {
    margin: 0.5em 0;
  }
  main #blockcont .entry-content section.narrow .wp-block-columns .awards li strong {
    display: block;
  }
  main #blockcont .entry-content section .colourin {
    font-size: 4vw;
  }
  main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li {
    margin: 1rem 0;
  }
  main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a .copy h3 {
    font-size: 1rem;
  }
  main #blockcont .entry-content section.wp-block-create-block-our-work .inner ul li a .copy p {
    font-size: 0.5em;
    width: 100%;
  }
  /* CONTACT STYLES -------------------- */
  #contact {
    font-size: 0.75em;
    padding: 2em 0;
  }
  #contact .inner .col a {
    font-size: 2em;
  }
  /* FOOTER STYLES -------------------- */
  footer {
    padding: 2em 0;
  }
  footer .inner .col {
    flex-direction: column;
    width: 100%;
    display: block;
  }
  footer .inner .col:last-of-type {
    font-size: 0.75em;
    margin-top: 1rem;
  }
  footer .inner .col .social {
    position: relative;
  }
}/*# sourceMappingURL=styles.css.map */