:root {
  --h1-size: 3.5rem;
  --h2-size: 1.875rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --h5-size: 1.125rem;
  --h6-size: 1rem;
  --body-size: 1rem;
  --link-colour: #168bff;
  --link-hover: #1177db;
  --background: #f3f2ef;
  --main-font: "Patrick Hand", sans-serif;
  --padding-global: 5rem;
  --container-width: 75rem;
  --container-large-width: 85rem;
  --container-small-width: 60rem;
  --title-font: "Permanent Marker", sans-serif;
  --outline: #292929;
  --primary: #77c1b1;
  --white: white;
  --primary-hover: #4c9787;
  --secondary: #d1e6e0;
  --secondary-hover: #a2bdb5;
  --black: black;
  --transparent: transparent;
  --secondary-font: Caveat, sans-serif;
  --outline-width: 4px;
  --blc-colour: #c8e0e6;
  --roman-colour: #8e90be;
  --contract-work-colour: #c1ddb1;
  --passion-projects-colour: #f9a4a4;
  --white-hover: #e9e8e8;
  --section-padding: 4rem;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

h1 {
  font-size: var(--h1-size);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: var(--h2-size);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

h3 {
  font-size: var(--h3-size);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

h4 {
  font-size: var(--h4-size);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

h5 {
  font-size: var(--h5-size);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

h6 {
  font-size: var(--h6-size);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

p {
  font-size: var(--body-size);
  margin-bottom: 0;
  line-height: 1.2;
}

a {
  color: var(--link-colour);
  font-size: var(--body-size);
  text-decoration: underline;
  transition: color .15s ease-in-out;
}

a:hover {
  color: var(--link-hover);
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 0;
  padding: 1rem 1.5rem;
  font-size: 18px;
  line-height: 22px;
}

.page-wrapper {
  background-color: var(--background);
  font-family: var(--main-font);
  min-height: 100vh;
  position: relative;
}

.main-wrapper {
  padding-bottom: 5rem;
}

.padding-global {
  padding-right: var(--padding-global);
  padding-left: var(--padding-global);
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-large {
  max-width: var(--container-large-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  max-width: var(--container-small-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.heading-style-h1 {
  font-family: var(--title-font);
  font-size: var(--h1-size);
  line-height: 1;
}

.heading-style-h1.font-colour-blc {
  color: var(--outline);
  letter-spacing: 2px;
}

.heading-style-h2 {
  font-size: var(--h2-size);
  line-height: 1;
}

.heading-style-h3 {
  font-size: var(--h3-size);
  line-height: 1;
}

.heading-style-h4 {
  font-size: var(--h4-size);
  line-height: 1;
}

.heading-style-h5 {
  font-size: var(--h5-size);
  line-height: 1;
}

.heading-style-h6 {
  font-size: var(--h6-size);
  line-height: 1;
}

.text-style-body {
  font-size: var(--body-size);
  line-height: 1.2;
}

.text-align-middle {
  text-align: center;
}

.button-primary {
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  border-radius: 6px;
  padding: .6rem 1rem;
  font-weight: 700;
  transition: background-color .25s ease-in-out;
  display: inline-block;
}

.button-primary:hover {
  background-color: var(--primary-hover);
}

.button-primary.is-white {
  background-color: var(--white);
  color: var(--primary);
}

.button-secondary {
  background-color: var(--secondary);
  color: var(--primary);
  cursor: pointer;
  border-radius: 6px;
  padding: .6rem 1rem;
  font-weight: 700;
  transition: background-color .25s ease-in-out;
  display: inline-block;
}

.button-secondary:hover {
  background-color: var(--secondary-hover);
}

.button-secondary.is-white {
  background-color: var(--white);
  color: var(--primary);
}

.button-tertiary {
  color: var(--primary);
  cursor: pointer;
  border-radius: 6px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: .6rem 1rem;
  font-weight: 700;
  display: flex;
}

.button-tertiary.is-white {
  background-color: var(--white);
  color: var(--primary);
}

.font-colour-white {
  color: var(--white);
}

.font-colour-black {
  color: var(--black);
}

.font-colour-primary {
  color: var(--primary);
}

.font-colour-secondary {
  color: var(--secondary);
}

.section-style-primary {
  background-color: var(--primary);
  color: var(--white);
}

.section-style-secondary {
  background-color: var(--secondary);
  color: var(--primary);
}

.is-display-none {
  display: none;
}

.all-caps {
  text-transform: uppercase;
}

.page_landing-page {
  width: 100vw;
}

.section_landing-heading {
  padding-top: 3rem;
}

.landing_header-wrapper {
  justify-content: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section_landing-main-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.landing_main-content-wrapper {
  border: 5px solid #000;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.5rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.landing_main-heading {
  width: 550px;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  position: absolute;
  inset: -45px 0% auto;
}

.landing_main-heading:hover {
  transform: rotate(-2deg);
}

.image_landing-main-content-heading {
  background-color: var(--background);
}

.landing_main-content-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.landing_content-wrapper {
  z-index: 2;
  justify-content: center;
  display: flex;
  position: relative;
}

.image_landing-content {
  z-index: 2;
  position: relative;
}

.image_landing-content.is-landscape {
  position: relative;
}

.image_landing-content.is-landscape.is-absolute {
  position: absolute;
  inset: 0%;
}

.image_landing-content.is-landscape.is-absolute.is-spinny {
  transform-origin: 50% 22%;
  transition: transform .5s cubic-bezier(.175, .885, .32, 1.275);
  transform: rotate(-4deg);
}

.image_landing-content.is-landscape.is-absolute.is-spinny:hover {
  transform: rotate(0);
}

.image_landing-content.is-absolute {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.image_harmony-pin {
  z-index: 100;
  width: 45px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 15% 0% 0% 6%;
}

.funny-lottie {
  pointer-events: none;
  width: 250px;
  display: none;
  position: fixed;
  inset: auto -4% -11% auto;
}

.main-slider {
  background-color: var(--transparent);
  height: auto;
}

.main-slider-arrow-wrapper {
  justify-content: center;
  align-items: center;
}

.lottie_doodle-arrow {
  width: 100px;
  margin-top: auto;
  margin-bottom: auto;
  position: fixed;
  top: 50vh;
  right: 0%;
}

.lottie_doodle-arrow.is-left {
  left: 0%;
  right: auto;
  transform: rotate(180deg);
}

.project-page {
  width: 100vw;
  padding-bottom: 3rem;
}

.section_project-heading {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.project_heading-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image_project-heading {
  width: 100%;
  max-width: 1000px;
}

.text-style-project-date {
  font-family: var(--secondary-font);
  font-size: 2rem;
  line-height: 1;
}

.section_project-description {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.project_description-wrapper {
  position: relative;
}

.project_description {
  z-index: 10;
  border: var(--outline-width) solid var(--outline);
  background-color: var(--background);
  border-radius: 8px;
  padding: 1.8rem 1.5rem 1.5rem;
  transition: box-shadow .4s ease-in-out;
  position: relative;
}

.project_description:hover, .project_description.is-blc:hover {
  box-shadow: 12px 12px 0 0 var(--blc-colour);
}

.project_description.is-roman:hover {
  box-shadow: 12px 12px #c1c2da;
}

.project_description.is-contract:hover {
  box-shadow: 12px 12px #d6edd0;
}

.project_description.is-passion:hover {
  box-shadow: 12px 12px #fccecd;
}

.project_description-background {
  z-index: 1;
  background-color: var(--roman-colour);
  border-radius: 8px;
  position: absolute;
  inset: 15% -1.5% -15% 1.5%;
}

.project_description-background.is-blc {
  background-color: var(--blc-colour);
}

.project_description-background.is-contract-work {
  background-color: #d6edd0;
}

.project_description-background.is-passion-projects {
  background-color: #fccecd;
}

.project_description-background.is-roman {
  background-color: #c1c2da;
}

.project_description-tape {
  z-index: 11;
  width: 130px;
  position: absolute;
  inset: -12% 0% auto 6%;
}

.project_description-tape.is-roman {
  color: var(--roman-colour);
}

.project_description-tape.is-contract-work {
  color: var(--contract-work-colour);
}

.project_description-tape.is-passion-projects {
  color: var(--passion-projects-colour);
}

.text-style-body-large {
  font-size: var(--h5-size);
  line-height: 1.2;
}

.text-style-body-large.no-text-wrap {
  white-space: nowrap;
}

.section_motion-graphics-merchandise {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.blc_first-section {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: .25fr 1.5fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blc_motion-graphics {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: relative;
}

.blc_motion-graphics-title-wrapper {
  width: 350px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -35px 0% auto;
}

.blc_motion-graphics-video-wrapper {
  width: 100%;
  padding-top: 1.4rem;
  position: relative;
}

.image_blc-video-frame {
  z-index: 10;
  pointer-events: none;
  position: relative;
}

.text-style-tape-text {
  font-family: var(--secondary-font);
  font-size: 2rem;
  line-height: 1;
}

.video_showreel {
  z-index: 5;
  aspect-ratio: 16 / 9;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 49px 0% 0%;
}

.blc_motion-graphic-text-wrapper {
  width: 100%;
  position: relative;
}

.blc_motion-graphic-video-text-wrapper {
  justify-content: center;
  align-items: center;
  padding: 2.1rem 2.6rem 1.7rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.blc_motion-graphic-button {
  color: #9ccce2;
  cursor: pointer;
  width: 50%;
  transition: transform .4s cubic-bezier(.785, .135, .15, .86), color .4s ease-in-out;
  position: relative;
}

.blc_motion-graphic-button:hover {
  color: #9cbfcf;
  transform: rotate(-2deg);
}

.image_see-more-background {
  z-index: 9;
  color: #8382b5;
  width: 100%;
  position: relative;
}

.image_see-more-background.is-av {
  color: #8382b5;
}

.image_see-more-background.is-buk {
  color: #2285b0;
}

.image_see-more-background.is-bis {
  color: #70aab7;
}

.image_see-more-background.is-one {
  color: #e37597;
}

.image_see-more-background.is-blc {
  color: var(--blc-colour);
}

.blc_see-more-button-content-wrapper {
  z-index: 10;
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  color: var(--black);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.svg-down-arrow.is-right-arrow {
  transform: rotate(-90deg);
}

.blc_logo-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1rem;
  display: flex;
}

.image_blc-logos {
  max-width: 90%;
  margin-bottom: 1rem;
  transition: transform .6s cubic-bezier(.175, .885, .32, 1.275);
}

.image_blc-logos:hover {
  transform: scale(1.1)translate(3px, 8px)rotate(2deg);
}

.blc_merchandise {
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4rem 2rem 2rem;
  display: flex;
  position: relative;
}

.blc_merch-title-wrapper {
  width: 260px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -35px 0% auto;
}

.blc_booklets-wrapper {
  justify-content: center;
  display: flex;
}

.booklet_image-wrapper {
  color: var(--black);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 48%;
  display: flex;
  position: relative;
  transform: rotate(-4deg);
}

.booklet_image-wrapper:hover {
  color: var(--black);
}

.booklet_image-wrapper.is-right {
  margin-left: -48px;
  transform: translate(0, 29px)rotate(2deg);
}

.section_building-blocks {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.tooltip {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
  padding-bottom: 11px;
  display: inline-flex;
  position: relative;
}

.tooltip.is-dds-booklet {
  display: none;
  position: absolute;
  top: -81px;
}

.tooltip-main {
  z-index: 2;
  background-color: #9ccce2;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  position: relative;
}

.tooltip-tip {
  z-index: 1;
  background-color: #9ccce2;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
  transform: rotate(45deg);
}

.section_blc-iconography {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.blc_iconography {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 3.5rem 2.5rem 2.5rem;
  display: flex;
  position: relative;
}

.blc_iconography-title {
  width: 320px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -35px 0% auto;
}

.icon_wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: var(--outline-width) solid var(--outline);
  background-color: var(--white);
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 2.4rem;
  display: grid;
  position: relative;
}

.image_blc-icon {
  transition: transform .4s cubic-bezier(.68, -.55, .265, 1.55);
}

.image_blc-icon:hover {
  transform: scale(1.1);
}

.board_pin {
  width: 23px;
  position: absolute;
  inset: 20px auto auto 20px;
}

.board_pin.is-tr {
  left: auto;
  right: 20px;
}

.board_pin.is-bl {
  top: auto;
  bottom: 20px;
}

.board_pin.is-br {
  inset: auto 20px 20px auto;
}

.section_blc-marketing-socials {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.blc_marketing-socials-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 5rem 2.5rem 2.5rem;
  display: flex;
  position: relative;
}

.blc_marketing-title {
  width: 610px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -52px 0% auto;
}

.blc_stories {
  width: 30%;
  transition: transform .8s cubic-bezier(.175, .885, .32, 1.275);
  position: relative;
}

.blc_stories:hover {
  transform: rotate(-2deg)translate(0, -11px);
}

.image_blc-story-phone {
  z-index: 10;
  position: relative;
}

.blc_story-slider {
  z-index: 5;
  background-color: var(--transparent);
  width: 84%;
  height: 69%;
  margin-top: 20%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.blc_story-slide {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.blc_story-slide.slide-1 {
  background-image: url('../images/blc-summer-savings-eating-out-story.jpg');
}

.blc_story-slide.slide-2 {
  background-image: url('../images/adidas-offer-lead-v2-1080x1920.jpg');
}

.blc_story-slide.slide-3 {
  background-image: url('../images/story.jpg');
}

.blc_story-slide.slide-4 {
  background-image: url('../images/blc-always-on-trustpilot-v3-1080x1920.jpg');
}

.blc_story-slide.slide-5 {
  background-image: url('../images/blc-summer-savings-garden-story.jpg');
}

.blc_story-slide.slide-6 {
  background-image: url('../images/blc-summer-savings-beauty-story.jpg');
}

.blc_story-slide.slide-7 {
  background-image: url('../images/blc-black-friday-tech-and-mobile-1080x1920.jpg');
}

.blc_story-slide.slide-8 {
  background-image: url('../images/blc-always-on-trustpilot-v1-1080x1920.jpg');
}

.left-arrow {
  display: none;
}

.blc_social-stickers {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: start center;
  place-items: start center;
  width: 100%;
  display: grid;
}

.blc_social-sticker-wrapper {
  position: relative;
}

.blc_social-sticker-wrapper.is-left {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.blc_social-sticker-wrapper.is-left:hover {
  transform: rotate(-3deg)translate(-4px);
}

.blc_social-sticker-wrapper.is-right {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.blc_social-sticker-wrapper.is-right:hover {
  transform: rotate(3deg)translate(4px);
}

.blc_social-sticker-wrapper.is-bottom-left {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.blc_social-sticker-wrapper.is-bottom-left:hover {
  transform: translate(-6px)rotate(4deg);
}

.blc_social-sticker-wrapper.is-bottom-right {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.blc_social-sticker-wrapper.is-bottom-right:hover {
  transform: rotate(-3deg)translate(6px);
}

.blc_social-sticker-wrapper.is-top-left {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.blc_social-sticker-wrapper.is-top-left:hover {
  transform: rotate(-2deg)translate(-1px, -8px);
}

.blc_social-sticker-wrapper.is-top-right {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.blc_social-sticker-wrapper.is-top-right:hover {
  transform: rotate(2deg)translate(2px, -8px);
}

.blc_social-sticker-wrapper.is-bottom-middle {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.blc_social-sticker-wrapper.is-bottom-middle:hover {
  transform: rotate(2deg)translate(-1px, 9px);
}

.image_social-image-border {
  z-index: 10;
  pointer-events: none;
  position: relative;
}

.image_social-image {
  z-index: 1;
  aspect-ratio: 1;
  width: 80%;
  margin: auto 16px auto auto;
  position: absolute;
  inset: 0%;
}

.section_roman-emails {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.roman_emails {
  grid-column-gap: 7%;
  grid-row-gap: 7%;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  justify-content: center;
  align-items: flex-start;
  padding: 3.5rem 2.5rem 2.5rem;
  display: flex;
  position: relative;
}

.roman_emails-title {
  width: 210px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -41px 0% auto;
}

.roman_emails-campaign-wrapper {
  width: 45%;
}

.roman_emails-newsletter-wrapper {
  flex-flow: column;
  width: 45%;
  display: flex;
}

.roman_emails-newsletter-content {
  position: relative;
}

.image_newsletter-border {
  z-index: 10;
  pointer-events: none;
  position: relative;
}

.embed_roman-newsletter {
  z-index: 1;
  width: 94%;
  max-width: 94%;
  height: 95%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: 18px;
  position: absolute;
  inset: 0%;
  overflow: auto;
}

.image {
  overflow: auto;
}

.roman_emails-text-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.emails_sticker-div {
  z-index: 100;
  width: 160px;
  height: 200px;
  position: absolute;
  top: -70px;
  right: 0%;
}

.image_email-sticker {
  z-index: 10;
  position: absolute;
  inset: 0%;
}

.image_email-sticker.is-glitter-sticker {
  z-index: 9;
}

.image_email-sticker.is-top-sticker {
  transition: opacity 1s;
}

.image_email-sticker.is-top-sticker:hover {
  opacity: 0;
}

.roman_emails-text {
  max-width: 55%;
  padding-top: 10px;
}

.roman_emails-title-test {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -41px auto auto;
}

.roman_emails-title-test:hover {
  transform: rotate(-2deg);
}

.heading-style-section {
  font-family: var(--title-font);
  text-align: center;
  letter-spacing: 2px;
  padding-bottom: 10px;
  font-size: 2.5rem;
  line-height: 1;
}

.section_testing {
  background-color: var(--outline);
}

.blc_social-title {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -59px auto auto;
}

.blc_social-title:hover {
  transform: rotate(-2deg);
}

.blc_iconography-title-v2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -39px auto auto;
}

.blc_iconography-title-v2:hover {
  transform: rotate(-2deg);
}

.blc_iconography-title-v2-copy {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  position: absolute;
  inset: -39px auto auto;
}

.blc_merchandise-title {
  grid-column-gap: .9rem;
  grid-row-gap: .9rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -39px auto auto;
}

.blc_merchandise-title:hover {
  transform: rotate(-2deg);
}

.blc_merchandise-title-copy {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  position: absolute;
  inset: -39px auto auto;
}

.blc_motion-graphic-title {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -44px auto auto;
}

.blc_motion-graphic-title:hover {
  transform: rotate(-2deg);
}

.landing_philosophy-title {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -45px auto auto;
}

.landing_philosophy-title:hover {
  transform: rotate(-2deg);
}

.slider-mask {
  height: 100%;
}

.roman_giphy-stickers-title {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -55px auto auto;
}

.roman_giphy-stickers-title:hover {
  transform: rotate(-2deg);
}

.roman_giphy-stickers-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 2.5rem 2.5rem;
  display: flex;
  position: relative;
}

.giphy_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  padding: 1.5rem;
  display: grid;
  position: relative;
}

.section_roman-giphy-stickers, .section_roman-web-assets {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.roman_website-assets-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 5rem 2.5rem 2.5rem;
  display: flex;
  position: relative;
}

.roman_giphy-text-wrapper {
  width: 100%;
  padding-left: 1rem;
}

.roman_web-asset-laptop-wrapper {
  width: 45%;
  min-width: 45%;
  transition: transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.roman_web-asset-laptop-wrapper:hover {
  transform: rotate(-3deg);
}

.roman_web-asset-phone-wrapper {
  width: 43%;
  transition: transform .8s cubic-bezier(.175, .885, .32, 1.275);
}

.roman_web-asset-phone-wrapper:hover {
  transform: rotate(6deg);
}

.section_roman-van-wrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.roman_van-wrap-title {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -50px auto auto;
}

.roman_van-wrap-title:hover {
  transform: rotate(-2deg);
}

.van_image-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  display: block;
  position: relative;
}

.section_contract-tabs {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.contract_tab-design {
  border: var(--outline-width) solid var(--outline);
  background-color: var(--transparent);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 22%;
  padding: 2rem 2.5rem 2.5rem;
  transition: box-shadow .3s cubic-bezier(.785, .135, .15, .86), color .15s ease-in-out;
  display: flex;
  box-shadow: 0 0 #0003;
}

.contract_tab-design:hover {
  box-shadow: 12px -12px 0 2px #0003;
}

.contract_tab-design.is-av {
  background-color: #0000;
  box-shadow: 0 0 #cdcce0;
}

.contract_tab-design.is-av:hover {
  color: #8382b5;
  box-shadow: 12px -12px 0 2px #cdcce0;
}

.contract_tab-design.is-av.w--current {
  color: #be95f3;
  background-color: #241b31;
  box-shadow: 12px -12px 0 2px #cdcce0;
}

.contract_tab-design.is-buk {
  transition: box-shadow .3s ease-in-out, color .15s ease-in-out;
  box-shadow: 0 0 #a7c4d0;
}

.contract_tab-design.is-buk:hover {
  color: #2285b0;
  box-shadow: 12px -12px 0 2px #a7c4d0;
}

.contract_tab-design.is-buk.w--current {
  color: var(--white);
  background-color: #0774b8;
  box-shadow: 12px -12px 0 2px #a7c4d0;
}

.contract_tab-design.is-bis {
  background-color: #0000;
  box-shadow: 0 0 #d7ecf1;
}

.contract_tab-design.is-bis:hover {
  color: #70aab7;
  box-shadow: 12px -12px 0 2px #d7ecf1;
}

.contract_tab-design.is-bis.w--current {
  color: #bbe4f9;
  background-color: #002243;
  box-shadow: 12px -12px 0 2px #d7ecf1;
}

.contract_tab-design.is-one {
  box-shadow: 0 0 #f2d4dd;
}

.contract_tab-design.is-one:hover {
  color: #e37597;
  box-shadow: 12px -12px 0 2px #f2d4dd;
}

.contract_tab-design.is-one.w--current {
  background-color: var(--outline);
  color: #f361ad;
  box-shadow: 12px -12px 0 2px #f2d4dd;
}

.contract_tab-menu {
  justify-content: space-between;
  display: flex;
}

.contract_tab-wrapper {
  width: 100%;
}

.contract_text-label {
  color: #9ccce2;
  cursor: auto;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.785, .135, .15, .86), color .4s ease-in-out;
  display: flex;
  position: absolute;
  inset: auto 0% -31px;
}

.contract_text-label:hover {
  color: #9cbfcf;
  transform: rotate(-2deg);
}

.contract_tab-text {
  z-index: 10;
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  color: var(--black);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0%;
}

.text-style-contract-tape-text {
  font-family: var(--secondary-font);
  font-size: 1.5rem;
}

.contract_tab-content {
  padding-top: 6rem;
}

.giphy_border {
  width: 171px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.giphy_border.is-tl {
  width: 132px;
  inset: 0 auto auto 0;
}

.flex-vert {
  flex-flow: column;
  display: flex;
}

.passion_office-title {
  grid-column-gap: .9rem;
  grid-row-gap: .9rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -52px auto auto;
}

.passion_office-title:hover {
  transform: rotate(-2deg);
}

.passion_content-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: .25fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.passion_us-office {
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4rem 2rem 2rem;
  display: flex;
  position: relative;
}

.section_passion-main {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.passion_column {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.passion_motorsports {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: relative;
}

.passion_motorsports-title {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -38px auto auto;
}

.passion_motorsports-title:hover {
  transform: rotate(-2deg);
}

.passion_motorsports-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.passion_poster-wrappers {
  justify-content: space-between;
  display: flex;
  position: relative;
}

.poster-wrapper {
  width: 100%;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.poster-wrapper:hover {
  transform: scale(1.05);
}

.poster-wrapper.is-office-left:hover {
  transform: translate(-4px, -3px)rotate(-3deg);
}

.poster-wrapper.is-office-right:hover {
  transform: translate(3px, -3px)rotate(2deg);
}

.motorsports_laptop-wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.motorsports_laptop-wrapper:hover {
  transform: rotate(-3deg);
}

.passion_lightbox.is-phone-left {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), color .15s ease-in-out;
}

.passion_lightbox.is-phone-left:hover {
  transform: translate(-2px, -4px)rotate(-2deg);
}

.passion_lightbox.is-phone-right {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), color .15s ease-in-out;
}

.passion_lightbox.is-phone-right:hover {
  transform: translate(3px, -4px)rotate(3deg);
}

.passion_pop-culture {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: relative;
}

.passion_pop-culture-title {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -38px auto auto;
}

.passion_pop-culture-title:hover {
  transform: rotate(-2deg);
}

.passion_pop-culture-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  width: 100%;
  padding-top: 1.3rem;
  display: flex;
}

.pop_culture-phone-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: space-between;
  display: flex;
}

.passion_why-not {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: relative;
}

.why_not-sticky-note {
  width: 100%;
  position: relative;
}

.why_not-sticky-note.is-left {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.why_not-sticky-note.is-left:hover {
  transform: rotate(-2deg)translate(-3px, -6px);
}

.why_not-sticky-note.is-right {
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

.why_not-sticky-note.is-right:hover {
  transform: rotate(3deg)translate(1px, -8px);
}

.image_sticky-note-border {
  z-index: 10;
  position: relative;
}

.sticky_note-image-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-left: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.passion_why-not-full-image {
  transition: transform .8s cubic-bezier(.175, .885, .32, 1.275);
}

.passion_why-not-full-image:hover {
  transform: rotate(-3deg);
}

.contract_work-tab-page {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: var(--outline-width) solid var(--outline);
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.contract_work-tab-content-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  background-color: #251b31;
  border-radius: 6px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 4rem;
  display: flex;
}

.contract_work-tab-content-wrapper.is-av {
  background-color: #251b31;
}

.contract_work-tab-content-wrapper.is-buk {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: #0774b8;
}

.contract_work-tab-content-wrapper.is-bis {
  background-color: #002243;
}

.contract_work-tab-content-wrapper.is-one {
  background-color: var(--outline);
  background-image: linear-gradient(294deg, #4a25aa 3.79%, #c724b1 14.89%, #e4002b 40.2%, #ff8200 82.38%);
}

.contract_work-tab-content-wrapper.is-one.ice-lab {
  background-image: none;
}

.contract_work-tab-clip {
  width: 300px;
  position: absolute;
  top: -40px;
}

.av_logo-side-by-side {
  justify-content: space-around;
  align-items: stretch;
  display: flex;
}

.av_logo-stack {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--white);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.av_logo-stack.is-wordmark {
  width: 500px;
}

.image_av-submark {
  max-width: 40%;
  margin-top: auto;
  margin-bottom: auto;
}

.contract_work-colour-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: center;
  display: flex;
}

.colour_swatch {
  border: 2px solid var(--white);
  border-radius: 100%;
  min-width: 75px;
  max-width: 75px;
  min-height: 75px;
  max-height: 75px;
  transition: border-radius 1s cubic-bezier(.175, .885, .32, 1.275);
}

.colour_swatch:hover {
  border-radius: 8px;
}

.colour_swatch.av-1 {
  background-color: #251b31;
}

.colour_swatch.av-2 {
  background-color: #be95f3;
}

.colour_swatch.av-3 {
  background-color: #46295a;
}

.colour_swatch.av-4 {
  background-color: #edeae2;
}

.colour_swatch.av-5 {
  background-image: linear-gradient(#251b31, #be95f3);
}

.colour_swatch.bis-1 {
  background-color: #002243;
}

.colour_swatch.bis-2 {
  background-color: #bbe4f9;
}

.colour_swatch.bis-3 {
  background-color: #f5f5f5;
}

.colour_swatch.aston-1 {
  background-color: #4a25aa;
}

.colour_swatch.aston-2 {
  background-color: #c724b1;
}

.colour_swatch.aston-3 {
  background-color: #e4002b;
}

.colour_swatch.aston-4 {
  background-color: #ff8200;
}

.colour_swatch.aston-5 {
  background-image: linear-gradient(294deg, #4a25aa 3.79%, #c724b1 14.89%, #e4002b 40.2%, #ff8200 82.38%);
}

.colour_stack {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--white);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.business_card-stacks {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--white);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.business_card-wrapper {
  border-radius: 8px;
  justify-content: center;
  width: 74%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.av_business-card {
  width: 300px;
  position: absolute;
  box-shadow: 0 0 31px 10px #be95f387;
}

.av_business-card.is-left {
  left: 0;
}

.av_business-card.is-right {
  right: 0;
}

.buk_catalogue-wrapper {
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  width: 80%;
  margin-bottom: -78px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contract_work-buk-notebooks {
  justify-content: center;
  width: 80%;
  margin: 1rem auto 2rem;
  display: flex;
}

.bis_website-wrapper {
  border-radius: 8px;
  justify-content: center;
  align-items: flex-start;
  width: 74%;
  max-height: 500px;
  display: flex;
  position: relative;
  overflow: auto;
}

.ice_lab-image-wrapper {
  border-radius: 8px;
  justify-content: center;
  align-items: flex-start;
  max-height: 270px;
  display: flex;
  overflow: hidden;
}

.image_ice-lab-tshirt {
  max-width: 200%;
}

.image_ice-lab-logo {
  margin-top: auto;
  margin-bottom: auto;
}

.image_a-plus {
  max-width: 70%;
  margin-top: auto;
  margin-bottom: auto;
}

.aston_inspire-mockups {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--white);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.aston_inspire-mockup-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 8px;
  justify-content: space-around;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.aston_inspire-mockup-image-wrapper {
  width: 100%;
}

.giphy_gif-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: var(--outline-width) solid var(--outline);
  background-color: var(--roman-colour);
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 500px;
  padding: 1.5rem;
  display: block;
  position: relative;
}

.clickable-tooltip {
  aspect-ratio: 1;
  border: var(--outline-width) solid var(--outline);
  background-color: var(--roman-colour);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  transition: background-color .2s ease-in-out;
  display: inline-flex;
}

.clickable-tooltip:hover {
  background-color: #c0c1e0;
}

.clickable-tooltip.is-clicked {
  aspect-ratio: auto;
  border-radius: 8px 8px 8px 1px;
  width: auto;
  max-width: 350px;
  padding: 1rem;
}

.svg_tooltip-plus {
  padding-top: 5px;
}

.tooltip-wrapper {
  cursor: pointer;
  justify-content: flex-start;
  align-items: flex-end;
  display: inline-flex;
}

.tooltip-wrapper.is-van-1 {
  position: absolute;
  bottom: 327px;
  left: 182px;
}

.tooltip-wrapper.is-van-2 {
  position: absolute;
  bottom: 276.281px;
  right: 45px;
}

.tooltip-wrapper.is-van-3 {
  position: absolute;
  bottom: 53px;
  left: 199px;
}

.tooltip-wrapper.is-van-4 {
  position: absolute;
  bottom: 83px;
  right: 32px;
}

.tooltip-text {
  display: none;
}

.navigation {
  z-index: 999;
  flex-flow: column;
  justify-content: flex-end;
  max-height: 176px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 66px;
  display: flex;
  position: static;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.navigation-tab-wrapper {
  justify-content: center;
  display: flex;
}

.navigation-tab {
  border: var(--outline-width) solid var(--outline);
  color: var(--outline);
  background-color: #8e90be;
  border-radius: 8px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding: 10rem 3rem 1rem 1rem;
  text-decoration: none;
  transition: transform .3s ease-in-out;
  display: flex;
  transform: rotate(-5deg);
}

.navigation-tab:hover {
  color: var(--outline);
  transform: translate(0, 47px)rotate(-5deg);
}

.navigation-tab.w--current {
  transform: translate(0, 47px)rotate(-5deg);
}

.navigation-tab.is-middle {
  margin-left: -21px;
  padding-right: 2.1rem;
}

.navigation-tab.is-middle.is-blc {
  background-color: #9ccce2;
}

.navigation-tab.is-middle.is-roman {
  background-color: #c1c2da;
}

.navigation-tab.is-middle.is-contract-work {
  background-color: #d6edd0;
}

.navigation-tab.is-middle.is-passion-projects {
  background-color: #fccecd;
}

.navigation-tab.is-middle.is-contact, .navigation-tab.is-home {
  background-color: #d1e6e0;
}

.navigation-tab.is-home.w--current {
  transform: translate(0, 47px)rotate(-5deg);
}

.navigation-tab.is-home.broken-home.w--current {
  transform: rotate(-5deg);
}

.landing_lottie-wrapper {
  width: 134px;
  position: absolute;
  bottom: 62px;
}

.blc_booklets-info {
  justify-content: center;
  align-items: center;
  padding-right: 2rem;
  display: flex;
  position: relative;
  bottom: 15px;
}

.blc_booklet-info-lottie {
  width: 100px;
  transform: rotate(180deg);
}

.blc_booklet-info-text {
  padding-top: 2rem;
}

.blc_marketing-info {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  bottom: 15px;
}

.buk_catalogue-info {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  bottom: 47px;
}

.buk_catalogue-link {
  transition: transform .2s ease-in-out, color .15s ease-in-out;
}

.buk_catalogue-link:hover {
  transform: scale(1.02);
}

.section_contact-main {
  padding-top: 2rem;
}

.contact_box {
  justify-content: center;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.contact_text-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: absolute;
  top: 68px;
}

.contact_content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--outline);
  align-items: center;
  text-decoration: none;
  display: flex;
}

.contact_content-wrapper:hover {
  color: var(--primary-hover);
}

.contact_lottie-wrapper {
  width: 100px;
}

.padding-navigation {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.scroll-to-top {
  opacity: .4;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: opacity .2s ease-in-out, height .2s ease-in-out, width .2s ease-in-out, color .15s ease-in-out;
  position: fixed;
  inset: auto 1% 1% auto;
  transform: rotate(180deg);
}

.scroll-to-top:hover {
  opacity: 1;
  width: 80px;
  height: 80px;
}

.roman_website-assets-title {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  background-color: var(--background);
  color: var(--outline);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: inline-flex;
  position: absolute;
  inset: -44px auto auto;
}

.roman_website-assets-title:hover {
  transform: rotate(-2deg);
}

.paragraph {
  text-align: center;
}

.paragraph-2 {
  text-align: center;
  padding-top: 0;
}

.passion_text-wrapper {
  padding-top: 9px;
}

.passion_text-wrapper.is-pop-culture {
  padding-top: 0;
}

.passion_us-office-image {
  z-index: 100;
  border-radius: 8px;
  display: none;
  position: absolute;
  top: -260px;
  overflow: hidden;
}

.icon_before-after {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.icon_before-after-text-wrapper {
  width: 65%;
}

.icon_before-after-wrapper {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  flex-flow: column;
  align-items: center;
  width: 40%;
  display: flex;
}

.padding-vert-0-5rem {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.blc_marketing-text-wrapper {
  padding-top: 1.2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.display-none-desktop {
  display: none;
}

.navigation-menu-item-wrapper {
  z-index: 100;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.navigation-menu-item-wrapper.is-mobile, .section_contract-tabs-mobile, .mobile-logo {
  display: none;
}

@media screen and (min-width: 1920px) {
  .container-large.is-relative {
    position: relative;
  }

  .scroll-to-top {
    right: 18%;
  }
}

@media screen and (max-width: 991px) {
  .main-wrapper {
    padding-top: 4rem;
  }

  .container-small.is-nav-container {
    width: auto;
    max-width: none;
  }

  .landing_main-heading {
    width: 450px;
  }

  .section_project-description {
    padding-top: 3.5rem;
  }

  .project_description-tape {
    top: -10%;
  }

  .blc_first-section {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: .25fr;
    grid-template-columns: 1fr;
  }

  .video_showreel {
    width: 96%;
    top: 62px;
  }

  .blc_marketing-socials-wrapper {
    flex-flow: column;
  }

  .emails_sticker-div {
    width: 110px;
    height: 150px;
  }

  .roman_emails-text {
    max-width: 100%;
    padding-top: 74px;
  }

  .blc_social-title {
    width: 410px;
  }

  .roman_giphy-stickers-title:hover {
    transform: none;
  }

  .giphy_wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .roman_website-assets-wrapper {
    flex-flow: wrap;
  }

  .roman_web-asset-laptop-wrapper {
    width: 60%;
  }

  .roman_web-asset-phone-wrapper {
    width: 20%;
  }

  .section_contract-tabs {
    display: none;
  }

  .contract_tab-design {
    width: 90%;
  }

  .contract_tab-menu {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: center;
    display: grid;
  }

  .passion_content-grid {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    grid-template-columns: 1fr;
  }

  .contract_work-tab-page {
    position: relative;
  }

  .contract_work-tab-content-wrapper {
    grid-column-gap: 4.6rem;
    grid-row-gap: 4.6rem;
  }

  .av_logo-stack.is-wordmark {
    width: 430px;
  }

  .contract_work-colour-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: space-around;
    width: 100%;
  }

  .colour_swatch {
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
  }

  .colour_stack {
    width: 100%;
  }

  .giphy_gif-wrapper {
    height: auto;
  }

  .clickable-tooltip {
    width: 30px;
    height: 30px;
    display: none;
  }

  .navigation {
    z-index: 100;
    background-color: #9ccce2;
    justify-content: flex-start;
    width: 100vw;
    height: 150vh;
    max-height: none;
    padding-top: 144px;
    position: fixed;
    overflow: hidden scroll;
    transform: translate(-1000px);
  }

  .navigation-tab-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    height: 150vh;
    padding-top: 37px;
    overflow: hidden scroll;
  }

  .navigation-tab {
    margin-right: -100px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 1rem;
    overflow: hidden;
  }

  .navigation-tab:hover {
    transform: translate(-40px)rotate(-5deg);
  }

  .navigation-tab.is-middle {
    margin-top: -1.1rem;
    margin-left: 0;
    padding-bottom: 3.1rem;
  }

  .navigation-tab.is-middle.is-blc.w--current, .navigation-tab.is-middle.is-roman.w--current {
    transform: translate(-40px)rotate(-5deg);
  }

  .navigation-tab.is-middle.is-contact {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .navigation-tab.is-home.w--current {
    transform: translate(-40px)rotate(-5deg);
  }

  .landing_lottie-wrapper {
    width: 100px;
    bottom: 28px;
  }

  .contact_box {
    border: var(--outline-width) solid var(--outline);
    border-radius: 8px;
    width: 100%;
    padding: 3rem;
  }

  .contact_text-wrapper {
    position: static;
  }

  .padding-navigation {
    padding-left: 0;
    padding-right: 0;
  }

  .scroll-to-top.w--current {
    z-index: 98;
    display: none;
  }

  .icon_before-after {
    flex-flow: column;
  }

  .icon_before-after-text-wrapper, .icon_before-after-wrapper {
    width: 100%;
  }

  .text-align-middle-tablet {
    text-align: center;
  }

  .display-none-tablet {
    display: none;
  }

  .navigation-menu-item-wrapper.is-mobile {
    z-index: 999;
    filter: invert();
    height: auto;
    display: flex;
    position: static;
    bottom: auto;
    left: auto;
  }

  .mobile-menu-button {
    background-color: var(--background);
    filter: invert();
    width: 65px;
    padding-top: 5px;
  }

  .mobile-menu-wrapper {
    z-index: 999;
    border-bottom: var(--outline-width) solid var(--outline);
    background-color: var(--background);
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
  }

  .section_contract-tabs-mobile {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    padding-top: 4rem;
    display: flex;
  }

  .contract_work-tab-mobile-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    display: flex;
  }

  .mobile-logo {
    width: 13rem;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .padding-global {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text-align-middle-mobile {
    text-align: center;
  }

  .landing_header-wrapper {
    width: 100%;
  }

  .landing_main-content-wrapper {
    padding-top: 0;
    padding-right: 0;
  }

  .landing_main-content-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .image_landing-content {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .image_landing-content.is-landscape {
    padding-left: 40px;
    padding-right: 40px;
  }

  .project_description {
    padding-top: 1.7rem;
  }

  .project_description-background {
    inset: 12% -3% -12% 3%;
  }

  .project_description-tape {
    width: 120px;
    top: -7%;
  }

  .project_description-tape.is-roman {
    width: 110px;
    top: -7%;
  }

  .project_description-tape.is-passion-projects {
    width: 110px;
    top: -9%;
  }

  .blc_motion-graphics {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .blc_motion-graphics-video-wrapper {
    aspect-ratio: 16 / 9;
    margin-top: 3rem;
    padding-top: 0;
  }

  .video_showreel {
    width: 100%;
    position: static;
  }

  .icon_wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .blc_stories {
    width: 50%;
  }

  .blc_social-stickers {
    grid-template-columns: 1fr 1fr;
  }

  .image_social-image {
    margin-right: 21px;
  }

  .roman_emails {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .roman_emails-campaign-wrapper, .roman_emails-newsletter-wrapper {
    width: 100%;
  }

  .emails_sticker-div {
    width: 190px;
    height: 230px;
  }

  .roman_emails-text {
    max-width: 50%;
    padding-top: 17px;
  }

  .landing_philosophy-title {
    grid-column-gap: .1rem;
    grid-row-gap: .1rem;
    width: 360px;
  }

  .van_image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .contract_tab-design {
    margin-left: auto;
    margin-right: auto;
  }

  .contract_tab-menu {
    grid-column-gap: 20px;
    grid-row-gap: 50px;
  }

  .contract_work-tab-content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .contract_work-tab-content-wrapper.is-buk {
    padding-bottom: 2rem;
  }

  .av_logo-stack.is-wordmark, .buk_catalogue-wrapper, .contract_work-buk-notebooks {
    width: 100%;
  }

  .navigation {
    z-index: 998;
    padding-top: 79px;
    transform: translate(-1000px);
  }

  .landing_lottie-wrapper {
    width: 130px;
    bottom: 36px;
  }

  .contact_content-wrapper {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
    width: 100%;
  }

  .display-none-mobile {
    display: none;
  }

  .display-none-desktop {
    display: block;
  }

  .text-align-middle-tablet {
    text-align: center;
  }

  .display-none-tablet {
    display: none;
  }

  .mobile-menu-wrapper {
    padding-left: 1.5rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 479px) {
  .main-wrapper {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .heading-style-h1.font-colour-blc.text-align-middle {
    font-size: 2.8rem;
  }

  .heading-style-h2 {
    word-break: break-all;
  }

  .landing_main-content-grid {
    padding-top: 46px;
  }

  .text-style-project-date {
    text-align: center;
  }

  .project_description-tape {
    width: 100px;
    top: -4%;
  }

  .project_description-tape.is-roman {
    width: 100px;
    top: -3%;
  }

  .project_description-tape.is-contract-work {
    width: 120px;
    top: -6%;
  }

  .project_description-tape.is-passion-projects {
    top: -7%;
  }

  .blc_motion-graphics {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .blc_motion-graphics-video-wrapper {
    margin-top: 3rem;
    padding-top: 0;
  }

  .video_showreel {
    width: 100%;
    position: static;
  }

  .blc_motion-graphic-button {
    border: var(--outline-width) solid var(--outline);
    background-color: var(--blc-colour);
    border-radius: 8px;
    padding: .8rem 1.1rem;
  }

  .blc_see-more-button-content-wrapper {
    position: relative;
  }

  .blc_logo-image-wrapper {
    width: 100%;
  }

  .blc_marketing-socials-wrapper {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }

  .blc_social-stickers {
    grid-template-columns: 1fr;
  }

  .image_social-image {
    width: 79%;
    margin-right: 10%;
  }

  .roman_emails {
    justify-content: center;
    align-items: center;
  }

  .embed_roman-newsletter {
    margin-top: 10px;
    margin-right: 9px;
  }

  .emails_sticker-div {
    width: 100px;
    top: -28px;
  }

  .roman_emails-text {
    max-width: 100%;
    padding-top: 96px;
  }

  .roman_emails-title-test {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .heading-style-section {
    font-size: 2.1rem;
  }

  .blc_social-title {
    width: 300px;
  }

  .blc_iconography-title-v2, .blc_merchandise-title {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .blc_motion-graphic-title {
    width: 230px;
  }

  .landing_philosophy-title {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    width: 280px;
  }

  .roman_giphy-stickers-title {
    transition-property: none;
  }

  .roman_giphy-stickers-wrapper {
    padding-top: 4.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .giphy_wrapper {
    grid-template-columns: 1fr;
  }

  .roman_website-assets-wrapper {
    flex-flow: column;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .roman_giphy-text-wrapper {
    padding-left: 0;
  }

  .roman_web-asset-laptop-wrapper {
    width: 100%;
  }

  .roman_web-asset-phone-wrapper {
    width: 40%;
  }

  .roman_van-wrap-title {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    width: 170px;
  }

  .contract_tab-design {
    aspect-ratio: 1;
  }

  .contract_tab-menu {
    grid-template-columns: 1fr;
  }

  .passion_poster-wrappers {
    flex-flow: column;
  }

  .motorsports_laptop-wrapper {
    padding: 0;
  }

  .pop_culture-phone-wrapper {
    flex-flow: column;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .contract_work-tab-page {
    position: relative;
  }

  .contract_work-tab-content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .contract_work-tab-clip {
    width: 240px;
  }

  .av_logo-side-by-side {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .av_logo-stack {
    width: 100%;
  }

  .contract_work-colour-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
  }

  .colour_swatch {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
  }

  .buk_catalogue-wrapper {
    align-items: center;
  }

  .aston_inspire-mockup-wrapper {
    flex-flow: column;
  }

  .navigation {
    height: 150vh;
    overflow: hidden scroll;
    transform: translate(-1000px);
  }

  .navigation-tab-wrapper {
    width: 110vw;
    padding-left: 33px;
  }

  .navigation-tab {
    margin-right: -35px;
    padding-right: 7rem;
  }

  .navigation-tab.is-middle {
    padding-right: 7rem;
  }

  .navigation-tab.is-middle.is-blc.w--current {
    transform: translate(-47px)rotate(-5deg);
  }

  .navigation-tab.is-middle.is-roman.w--current, .navigation-tab.is-middle.is-contract-work.w--current, .navigation-tab.is-middle.is-passion-projects.w--current, .navigation-tab.is-middle.is-contact.w--current {
    transform: translate(-40px)rotate(-5deg);
  }

  .landing_lottie-wrapper {
    width: 80px;
    bottom: 16px;
  }

  .buk_catalogue-link {
    width: 100%;
  }

  .contact_box {
    padding-left: .9rem;
    padding-right: .9rem;
  }

  .contact_text-wrapper {
    grid-column-gap: 2.2rem;
    grid-row-gap: 2.2rem;
  }

  .contact_content-wrapper {
    flex-flow: column;
  }

  .roman_website-assets-title {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    width: 210px;
  }

  .blc_marketing-text-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-menu-button {
    margin-right: -5px;
  }

  .contract_work-tab-mobile-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    display: flex;
  }

  .mobile-logo {
    width: 11rem;
  }
}

#w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dcc9-1dd09984 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dd46-1dd09984, #w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dd4a-1dd09984, #w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dd4e-1dd09984, #w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dd52-1dd09984, #w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dd56-1dd09984, #w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dd5a-1dd09984, #w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dd5e-1dd09984 {
  align-self: start;
}

#w-node-a6b17c48-5b33-1d51-e134-207d6e404b5f-1dd09984 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_97095ac2-d43f-abac-3386-6538584ef265-2239e7a4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_4a00461f-5def-fc5f-efc3-d69cd0b7dcc9-1dd09984 {
    grid-row: span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a6b17c48-5b33-1d51-e134-207d6e404b5f-1dd09984 {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a6b17c48-5b33-1d51-e134-207d6e404b5f-1dd09984 {
    grid-column: span 1 / span 1;
  }
}


