@charset "UTF-8";
/* CSS Document */

@font-face {
font-family: lausanne-100;
src: url('/assets/fonts/TWKLausanne-100.ttf');
font-weight:100;
}

@font-face {
font-family: lausanne-200;
src: url('/assets/fonts/TWKLausanne-200.ttf');
font-weight:200;
}

@font-face {
font-family: lausanne-300;
src: url('/assets/fonts/TWKLausanne-300.ttf');
}

@font-face {
font-family: lausanne-400;
src: url('/assets/fonts/TWKLausanne-400.ttf');
font-weight:400;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;1,300&display=swap');

:root {
--body-font: 'lausanne-200', Helvetica, 'Montserrat', Open Sans, sans-serif;
--bg-color: #EFEBE7; 
--text-color: #000000;
--link-color: #EE674F;
}

html {
font-family: var(--body-font);
font-size:16px !important;
background-color: var(--bg-color);
<!--overflow-x: hidden;-->
font-smooth: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering:optimizeLegibility !important;
height:100%;
}

body {
font-family: var(--body-font);
background-color: var(--bg-color);
color: var(--text-color);
overflow-x: hidden;
margin: 0px;
line-height:1.2;
}

p {
margin:0px;
font-size: 1rem;
font-family: var(--body-font);
color: var(--text-color)
}

li {
font-family: var(--body-font);
}

a {
text-decoration: none;
text-decoration-thickness: 2px;
text-underline-offset:2px;
color:var(--link-color);
}

p a {
text-decoration: none;
text-decoration-thickness: 2px;
text-underline-offset:2px;
color:var(--link-color);
}

a:hover {
text-decoration: none;
}

.underline-hover {
text-decoration: none;
}

.underline-hover:hover {
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset:2px;
color:var(--link-color);
}

::selection {
background: var(--link-color);
color:#000;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
font-family: var(--body-font), Helvetica, 'Montserrat', Open Sans, sans-serif;
margin-top: 0;
line-height: 1.2;
}

.h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5 {
margin-bottom: .5rem;
}

h1, .h1 {
font-family: var(--body-font);
font-size:4rem;
line-height:1;
}

h2, .h2 {
font-size:2rem;
}

h3, .h3 {
font-size:1.5rem;
}

h4, .h4 {
font-size:1.25rem;
}

h5, .h5 {
font-size:1.125rem;
}

h6, .h6 {
font-size:0.85rem;
margin-bottom: 0.1rem;
}

.small {
font-size: 0.625rem;
color:#000000;
font-family: "DM Mono", monospace;
font-weight: 400;
font-style: normal;
text-transform: uppercase;
margin-bottom:0.75rem;
}

.w-200 {
font-family: lausanne-200, Helvetica, 'Montserrat', Open Sans, sans-serif;
font-weight:200;
}

.w-300 {
font-family: lausanne-300, Helvetica, 'Montserrat', Open Sans, sans-serif;
font-weight:300;
}

.w-400 {
font-family: lausanne-400, Helvetica, 'Montserrat', Open Sans, sans-serif;
font-weight:400;
}

.uppercase {
text-transform: uppercase;
}

.strapline {
margin-left: -5px;
font-size:4.5rem !important;
}

.word-break{
word-spacing: 100vw;
}

.no-gutters {
margin: 0px !important;
padding: 0px !important;
}

img {
width:100%;
}

.divider {
width:100%;
height:2px;
background-color:#000000;
}

/* colours */

.black {
color:#000000;
}

.grey {
color:#808080;
}

.white {
color:#ffffff;
}

.coral {
color: var(--link-color);
}

.bg-black {
background-color:#000000;
}

.bg-white {
background-color:#ffffff;
}

.bg-beige {
background-color:var(--bg-color);
}

/* Navigation */

.nav {
width:100%;
display: grid;
grid-template-columns: 2fr;
grid-template-rows: 2fr;
padding: 20px 0px 60px;
align-items: center;
}

.nav-header {
grid-area: 1;
align-self: center;
background-image: url(/assets/images/recipe_logo_black.png);
background-repeat: no-repeat;
background-size: contain;
height: 30px;
}

.nav-btn {
display: none;
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 1;
grid-row-end: 2;
align-self: center;
}

.icon-1, .icon-2, .icon-3 {
position: absolute;
left: 25%;
top: 50%;
width: 32px;
height: 3px;
background-color: black;
transition: all 400ms cubic-bezier(.84,.06,.52,1.8);
}

.icon-1 {
transform: translateY(-8px);
animation-delay: 100ms;
}

.icon-3 {
transform: translateY(8px);
animation-delay: 250ms;
}

.hamburger-icon {
position: relative;
height: 60px;
width: 60px;
top: 10%;
left: 3%;
z-index: 1000;
cursor: pointer;
border-radius: 50%;
transition: all 0.2s ease-in-out;
background: rgba(255,255,255,0);
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.icon-1.a {
transform: rotate(40deg);
}
.icon-3.b {
transform: rotate(-40deg);
}
.icon-2.c {
opacity: 0;
}

.clear {
clear: both;
}

.nav > .nav-links {
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 1;
grid-row-end: 2;
align-self: center;
font-size: 18px;
}

.nav > .nav-links > a {
display: inline-block;
padding: 13px 20px 13px 20px;
text-decoration: none;
color:#000000;
font-family: lausanne-400, Helvetica, 'Montserrat', Open Sans, sans-serif;
}

.nav-links-dark > a {
color:#ffffff !important;
}

.nav > .nav-links > a:hover {
text-decoration: none;
text-decoration-thickness: 1px;
text-underline-offset: 2px;
color: var(--link-color) !important;
}

.nav > #nav-check {
display: none;
}

.card {
background-color:#ffffff;
background-size:cover;
background-position:center center;
border-radius:20px;
padding: 1.5rem;
display: flex;
min-height:330px;
flex-direction: column;
justify-content: space-between;
transition: transform 0.2s;
}

.card:hover {
transform: scale(1.05);
}

.pillar-image-card {
background-color:#ffffff;
background-size:cover;
background-position:center center;
border-radius:20px;
padding: 1.5rem;
display: flex;
height: 535px;
flex-direction: column;
position:relative;
transition: transform .25s ease;
}

.pillar-image-card:hover {
transform: scale(1.05);
}

.pillar-image-card:hover .card-caption {
opacity:1;
}

.image-card {
background-color:#ffffff;
background-size:cover;
background-position:center center;
border-radius:20px;
padding: 1.5rem;
display: flex;
min-height:330px;
flex-direction: column;
justify-content: space-between;
}

.image {
background-color:#rgba(0,0,0,0);
border-radius:20px;
display: flex;
width: 100%;
flex-direction: column;
}

.card-spacer {
padding-top:30px;
}

.case-study-card {
background-color:#ffffff;
background-size:cover;
background-position:center center;
border-radius:20px;
padding: 1.5rem;
display: flex;
height: 535px;
flex-direction: column;
position:relative;
transition: transform .25s ease;
}

.case-study-card:hover {
transform: scale(1.02);
}

.case-study-logo {
width:140px;
height:auto;
}

.card-caption {
background-color: #ffffff;
position: absolute;
width: -webkit-fill-available;
bottom: 1.5rem;
padding: 1.25rem;
border-radius: 0px 0px 18px 18px;
opacity: 1;
margin: -1.5rem 0rem -1.5rem -1.5rem;
transition: opacity .25s ease;
}

.case-study-card:hover .card-caption {
opacity:1;
}

.expand {
display: flex;
height: 100%;
flex-direction: column;
justify-content: space-between;
}

.expand-center {
display: flex;
height: 100%;
flex-direction: column;
justify-content: center;
}

/* footer */

footer p {
line-height:1.4;
}

.footer-links {
}

.footer-links a {
text-decoration: none;
}

.footer-links a:hover {
text-decoration: underline !important;
}

/* Newsletter */

.newsletter-signup .mailchimp input[type=email] {
display:inline;
border-bottom: 1px solid;
font-size:1rem;
width: 90%;
}

.newsletter-signup .mailchimp .arrow-submit {
display:inline;
margin-left:-25px;
}

/* Client Logos */

.clients-carousel {
overflow: hidden;
width: 100%;
}

.carousel-track {
display: flex;
width: max-content;
will-change: transform;
}

.logo-wrapper {
display: flex;
align-items: center;
}

.logo-wrapper img {
max-height: 3rem;
max-width: 7rem;
width: auto;
padding: 30px 2rem;
flex-shrink: 0;
}

/* masonry grid */

.masonry-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(5, auto);
margin: 0px -10px 0 -10px;
}
.masonry-grid-1 {grid-area: 1 / 1 / 2 / 13;margin:10px;}
.masonry-grid-2 {grid-area: 2 / 1 / 3 / 13;margin:10px;}
.masonry-grid-3 {grid-area: 3 / 1 / 4 / 13;margin:10px;}
.masonry-grid-4 {grid-area: 2 / 1 / 3 / 13;margin:10px;}

/* homepage video */

video {
left: 0;
width: 100%;
top: 0;
height: 100%;
object-fit: cover;
background: #000000;
}

.unstyled-input {
-webkit-appearance: none;
appearance: none;
background: rgba(0, 0, 0, 0);
border: none;
padding: 0;
margin: 0;
color: inherit;
outline: none;
font: inherit;
border-radius: 0;
}

.mute-toggle {
opacity: 1;
margin-top:30px;
margin-bottom: 30px;
width: 44px;
height: 44px;
position: relative;
z-index: 3;
left: 50%;
transform: translateX(-50%);
display: grid;
place-items: center;
}

.mute-toggle .circle {
width: 36px;
height: 36px;
margin: -13px;
border: 2px solid var(--link-color);
border-radius: 50%;
}

.mute-toggle {
background-image: url(/assets/images/off.svg);
background-repeat: no-repeat;
color: var(--link-color);
fill: var(--link-color);
border:0;
width:18px;
height:15px;
text-indent:-999px;

}
.unmute-video {
background-image: url(/assets/images/on.svg);
background-repeat: no-repeat;
color: var(--link-color);
fill: var(--link-color);
border:0;
width:18px;
height:15px;
text-indent:-999px;
}

.youtube-video {
aspect-ratio: 16 / 9;
width: 100%;
}

.sticky {
position:sticky;
top:3rem;
}

/* Team / Bio pages */

.bio {
position: relative;
overflow: hidden;
max-height: calc(0.5rem * 3);
transition: max-height 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bio::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 2em;
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0),
rgba(240, 237, 230, 1)
);
pointer-events: none;
transition: opacity 0.3s ease;
}

.bio.expanded::after {
opacity: 0;
}

.close-icon {
font-family: Helvetica, Open Sans, sans-serif;
font-weight: lighter;
font-size: 1.4rem;
margin-top: -10px;
}


#pdf-container {
width: 100%;
position: relative;
text-align: center;
background-color: #ffffff;
}

canvas {
width: 100% !important;
height: auto !important;
display: block;
background-color: #ffffff;
}
#controls {
margin-top: 1rem;
}

button {
margin: 0px 10px;
font-size: 1rem;
cursor: pointer;
border: none;
color: #EE674F;
background: rgba(0, 0, 0, 0);
font-family: 'lausanne-200', Helvetica, 'Montserrat', Open Sans, sans-serif;
}

.bio-button {
margin:0px;
font-size: 1rem;
font-family: var(--body-font);
color: var(--text-color)
}

#toggleBtn{
margin:0px;
font-size:0.85rem;
font-family: var(--body-font);
color: var(--link-color);
padding: 1rem 0px;
text-decoration:none;
}

#toggleBtn:hover {
text-decoration:underline;
}

.read-toggle {
display: inline-flex;
align-items: center;
gap: 8px;
background: none;
border: none;
cursor: pointer;
font-size: 16px;
font-weight: 500;
}

.icon-circle {
width: 22px;
height: 22px;
border: 2px solid currentColor;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 600;
line-height: 1;
transition: transform 0.25s ease;
}

/* Subtle animation when toggling */
.read-toggle.active .icon-circle {
transform: rotate(180deg);
}


.main-image img {
width: 100%;
cursor: pointer;
transition: transform 0.2s;
}

.main-image img:hover {
transform: scale(1.05);
}

/* Lightbox styles */
.lightbox {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgba(240,237,230,0.8);
justify-content: center;
align-items: center;
flex-direction: column;
}

.caption {
display:none;
}

.lightbox-content {
margin: auto;
display: block;
max-width: 60%;
}

.close {
position: absolute;
top: 20px;
right: 35px;
color: #000;
font-size: 50px;
cursor: pointer;
}

.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
color: #000000;
font-size: 50px;
padding: 10px;
margin-top: -25px;
user-select: none;
}

.prev {
left: 0px;
}

.next {
right: 0px;
}

.prev:hover, .next:hover, .close:hover {
text-decoration: none;
color: var(--link-color);
}

/* Thumbnail container */
.thumbnails {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 20px;
margin-bottom: 30px;
}

.thumbnails img {
max-width: 180px;
width:4%;
margin: 5px;
cursor: pointer;
border: 2px solid transparent;
border-radius: 5px;
transition: border 0.2s, transform 0.2s;
}

.thumbnails img:hover, .thumbnails img.active {
border: 2px solid #EE674F;
transform: scale(1.2);
}

.visible-lg {
display:none
}

.visible-mob {
display:block;
}

/* Media queries */

@media(max-width: 600px) {
.nav > .nav-btn {
display: block;
}
.nav > .nav-btn > label {}
.nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
text-decoration: none;
}
.nav > .nav-btn > label > span {
display: block;
width: 30px;
height: 6px;
border-top: 2px solid #000;
}
.nav > .nav-links {
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 2;
grid-row-end: 3;
width: 100%;
transition: all 0.3s ease-in;
}
.nav > .nav-links > a {
display: block;
width: 100%;
padding:10px 0px;
}
.nav > #nav-check:not(:checked) ~ .nav-links {
display:none;
}
.nav > #nav-check:checked ~ .nav-links {
display:block;
}	

}

@media screen and (min-width: 601px) {

.strapline {
margin-left: -5px;
font-size:7.5rem !important;
}

h2, .h2 {
font-size:2rem;
}


.case-study-logo {
width:auto;
max-height:6rem;
max-width:9rem;
}

.mute-toggle {
margin-top:-55px;
margin-bottom: 40px;
}

.footer-links {
text-align: right;
}

.footer-links a {
display: inline-block;
padding-left:40px;
}

.masonry-grid-1 {grid-area: 1 / 1 / 2 / 13;margin:10px;}
.masonry-grid-2 {grid-area: 2 / 1 / 3 / 7;margin:10px;}
.masonry-grid-3 {grid-area: 2 / 7 / 3 / 13;margin:10px;}

}

@media(min-width: 768px) {

html {
font-size:18px !important;
}

h1, .h1 {
font-size:5rem;
}

.logo-wrapper.anim {
animation: scroll 30s linear infinite;
}

.newsletter-signup .mailchimp .arrow-submit {
margin-left:-25px;
}

.card, .image-card {
min-height:500px;
}

.card-caption {
opacity:0;
}

.lightbox-content {
max-width: 350px;
}

.close {
position: absolute;
top: 20px;
right: 35px;
color: #000;
font-size: 50px;
cursor: pointer;
}

.prev {
left: 20px;
}

.next {
right: 20px;
}

}

@media(min-width: 992px) {

.masonry-grid-1 {grid-area: 1 / 1 / 2 / 13;margin:10px;}
.masonry-grid-2 {grid-area: 2 / 1 / 3 / 6;margin:10px;}
.masonry-grid-3 {grid-area: 2 / 7 / 3 / 13;margin:10px;}

.visible-lg {
display:block
}

.visible-mob {
display:none;
}

}

@media(min-width: 1200px) {
.expand-center-break {
justify-content: center;
}

}