/* =====================
  General
======================== */

:root {
  --serif: 'Source Serif Pro', 'PT Serif', 'Lora', 'Noto Serif JP', 'Crimson Text', 'Crimson Pro', serif;
  --sans-serif: 'Montserrat', 'Work Sans', 'Source Sans Pro', 'Poppins', 'Helvetica Neue', 'Helvetica', sans-serif;

  /* primary colours */
  --white: #fff;
  --black: #00272B;
  --true-black: #000;
  --magenta: #8C545F;
  --magenta-32: rgba(140, 84, 95, 32%);
  --magenta-50: rgba(140, 84, 95, 50%);
  --magenta-90: rgba(140, 84, 95, 90%);
  --green-grey-background: #F5F5F0;

  /* secondary colours */
  --green-grey-text: #8A9697;
  --green-grey-text-darker: rgb(124, 134, 134);
  --grey-a: #F8F8F8;
  --grey-b: #B1B8B8;
  --grey-b-light: #b1b8b8ab;
  --grey-b-light-no-transparency: #CBCFCF;
  --grey-c: #ececea;
  --grey-d: #f1f1f1;
  --grey-e: #A1A5A4;
  --grey-f: #f3f3f3;
  --grey-g: #9CA1A1;
  --grey-h: #CACFCC;
  --grey-h-light: #e1e4e2;
  --overlay-background-a: rgba(32, 35, 35, 78%);
}

* {
  padding: 0;
  margin: 0;
  text-decoration-line: none;
  box-sizing: border-box;
  scroll-behavior: smooth!important;
}

body {  
  opacity: 1;
  background-color: var(--white);
  transition: opacity .6s;
}

body.fade {
  opacity: 0;
  transition: none;
}

/*Imports Source Serif Pro typeface (from 300 to 700)

/*light (300)*/
@font-face {
  font-family: "Source Serif Pro";
  src: url('/assets/source-serif-pro/SourceSerifPro-Light.ttf');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Source Serif Pro";
  src: url('/assets/source-serif-pro/SourceSerifPro-LightItalic.ttf');
  font-weight: 300;
  font-style: italic;
}

/*regular (400)*/
@font-face {
  font-family: "Source Serif Pro";
  src: url('/assets/source-serif-pro/SourceSerifPro-Regular.ttf');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Source Serif Pro";
  src: url('/assets/source-serif-pro/SourceSerifPro-Italic.ttf');
  font-weight: 400;
  font-style: italic;
}

/*semi-bold (600)*/
@font-face {
  font-family: "Source Serif Pro";
  src: url('/assets/source-serif-pro/SourceSerifPro-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Source Serif Pro";
  src: url('/assets/source-serif-pro/SourceSerifPro-SemiBoldItalic.ttf');
  font-weight: 600;
  font-style: italic;
}

/*bold (700)*/
@font-face {
  font-family: "Source Serif Pro";
  src: url('/assets/source-serif-pro/SourceSerifPro-Bold.ttf');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Source Serif Pro";
  src: url('/assets/source-serif-pro/SourceSerifPro-BoldItalic.ttf');
  font-weight: 700;
  font-style: italic;
}

/*Imports Montserrat typeface (from 300 to 700)

/*light (300)*/
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-Light.ttf');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-LightItalic.ttf');
  font-weight: 300;
  font-style: italic;
}

/*regular (400)*/
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-Regular.ttf');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-Italic.ttf');
  font-weight: 400;
  font-style: italic;
}

/*medium (500)*/
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-Medium.ttf');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-MediumItalic.ttf');
  font-weight: 500;
  font-style: italic;
}

/*semi-bold (600)*/
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-SemiBoldItalic.ttf');
  font-weight: 600;
  font-style: italic;
}

/*bold (700)*/
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-Bold.ttf');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('/assets/montserrat/Montserrat-BoldItalic.ttf');
  font-weight: 700;
  font-style: italic;
}


/*changes highlight colour*/
::selection {
  background: var(--magenta); /* WebKit/Blink Browsers */
  color: var(--white);
}

::-moz-selection {
  background: var(--magenta); /* Gecko Browsers */
  color: var(--white);
}

h1, h2, h3, h4, h5, h6, p, li, a, input, label, textarea, select, option, button, address {
  font-family: var(--serif);
  font-style: normal;
  color: var(--black);
}

a, input, textarea, select, option, button, address {
  font-family: var(--sans-serif);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 128%;
}

h1 {
    font-weight: 500;
    font-size: 42px;
}

h2 {
    font-weight: 400;
    font-size: 35px;
}

h3 {
    font-weight: 400;
    font-size: 30px;
}

h4 {
    font-weight: 400;
    font-size: 22px;
}

h5 {
    font-weight: 400;
    font-size: 15px;
}

h6 {
    font-weight: 400;
    font-size: 15px;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 167.5%;
}

li {
  font-weight: 400;
  font-size: 16px;
  line-height: 167.5%;
}

span {
  font-family: inherit;
  font-style: inherit;
  color: inherit;
  line-height: inherit;
}

input, select, textarea, a, button {
  outline: none;
}

button:focus, a:focus, input:focus, button:active, a:active, input:active {
  outline: none;
}

a:focus-visible, button:focus-visible {
  outline: auto;
  outline-color: var(--magenta);
}

a {
  text-decoration: none !important;
}

a:-webkit-any-link {
  text-decoration: none !important;
}

a:-moz-any-link {
  text-decoration: none !important;
}

a:link, a:active, a:any-link, a:visited, a:focus, a:hover, a:active {
  text-decoration: none !important;
}

button {
  color: unset;
  background-color: unset;
  font: unset;
  border: none;
  box-sizing: unset;
  align-items: unset;
}

button:hover {
  cursor: pointer;
}

button:active {
  outline: none;
  border: none;
}

.hide-visually {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.hide {
  opacity: 0;
  pointer-events: none;
}

.magenta-color {
  color: var(--magenta);
}

.no-transition {
  transition: none;
}

.stan-background-image {
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-color: var(--grey-a);
}

.overlap-background {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: var(--green-grey-background);
  z-index: -1;
  height: 600px;
}

.js-disabled-box {
  position: fixed;
  background-color: var(--magenta);
  width: 100%;
  padding: 28px 40px;
  z-index: 100;
}

.js-disabled-box h4 {
  color: var(--white);
  text-align: center;
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 157%;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

::-moz-placeholder { /* Firefox 19+ */
  opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  opacity: 1;
}
::-ms-input-placeholder { /* Microsoft Edge */
  opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
  opacity: 1;
}
::placeholder { /* Most modern browsers */
  opacity: 1;
}

@media only screen and (max-width: 510px) {
  h1 {
    font-size: 40px;
  }
}

/* header */

.main-header {
  display: flex;
  justify-content: center;
}

.main-nav {
  display: flex;
  width: 100%;
  max-width: 92%;
  justify-content: space-between;
  margin-top: 38px;
  position: absolute;
  z-index: 12;
}

.main-nav.fixed {
  position: fixed;
}

.main-nav ul {
  list-style-type: none;
  display: flex;
}

.main-nav ul li a, .main-nav ul li button {
  padding: 8px 10px;
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.main-nav .search-button {
  transition: opacity .2s, color .2s;
  position: relative;
}

.main-nav .search-button.hidden {
  pointer-events: none;
  opacity: 0;
}

.main-nav .search-button-icon {
  margin-right: 8px;
  margin-bottom: -1px;
  fill: var(--black);
  transition: fill 0.2s, opacity .2s;
}

.main-nav .search-button-icon.hidden {
  opacity: 0;
  pointer-events: none;
}

/* not applied to mobile */
@media only screen and (hover: hover) and (pointer: fine) {
  .main-nav ul li .search-button:hover .search-button-icon {
    fill: var(--magenta);
  }
}

.main-nav ul li a:hover, .main-nav ul li button:hover {
  color: var(--magenta);
}

.main-nav .search-button .close-icon {
  stroke: var(--black);
  transition: opacity .2s, stroke .2s;
  position: absolute;
  width: 24px;
  height: 24px;
}

.main-nav ul li .search-button:hover .close-icon {
  stroke: var(--magenta);
}

.main-nav .search-button .close-icon.hidden {
  opacity: 0;
  pointer-events: none;
}

.main-nav .right-nav {
  display: flex;
  align-items: center;
}

.main-header .right-nav ul {
  transition: opacity .2s;
}

.main-header .right-nav ul.hidden {
  pointer-events: none;
  opacity: 0;
}

.main-nav .right-nav li{
  margin-right: 11px;
}

.main-nav .left-nav li{
  margin-left: 11px;
}

.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 46px;
  margin-bottom: 50px;
  z-index: 15;
}

.header-logo.low-z-index {
  z-index: 0;
}

.logo {
  max-width: 455px;
}

.tagline {
  margin-top: 12px;
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 17px;
}

.burger-icon-button {
  display: none;
  align-items: center;
  padding: 8px 10px;
}

.burger-icon-button .text {
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 15px;
  display: none;
  transition: color 0.2s, opacity .2s;
}

.burger-icon-button .text.hidden {
  pointer-events: none;
  opacity: 0;
}

.burger-icon-button .icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16px;
  width: 20px;
  margin-left: 3px;
}

/* not applied to mobile */
@media only screen and (hover: hover) and (pointer: fine) {
  .burger-icon-button:hover .line {
    background-color: var(--magenta);
  }

  .burger-icon-button:hover .text {
    color: var(--magenta);
  }
}

.burger-icon-button .line {
  width: 100%;
  height: 2px;
  background-color: var(--black);
  transition: background-color 0.2s;
}

.burger-icon-button .line.b {
  transition: width .15s;
}

.burger-icon-button .line.a, .burger-icon-button .line.c {
  transition: all .2s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.burger-icon-button .line.b.open {
  width: 0;
}

.burger-icon-button .line.a.open {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-icon-button .line.c.open {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.main-nav .search-button-icon.mobile-screen-size {
  display: none;
}

/* styling for the semi-fixed header */
.quick-access .logo {
  max-width: 230px;
}

.quick-access .header-logo {
  margin-top: 22px;
  margin-bottom: 22px;
}

.quick-access .header-logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2px;
  padding-bottom: 2px;
}

.quick-access .header-logo .tagline {
  display: none;
}

.quick-access .header-logo.low-z-index {
  z-index: -1;
  opacity: 0;
}

.quick-access .main-nav {
  margin-top: 13px;
}

.main-header.quick-access {
  position: sticky;
  z-index: 10;
  top: 0;
  background-color: var(--white);
  transform: translateY(0px);
  transition: transform .4s, border .2s;
  border-bottom: 1px solid var(--grey-c);
}

/* replaces the space that was taken up when the header was full height */
.main-header.quick-access + * {
  padding-top: 112px;
}

@media only screen and (max-width: 1370px) {
  .main-header.quick-access + * {
    padding-top: 106px;
  }  
}

@media only screen and (max-width: 1140px) {
  .main-header.quick-access + * {
    padding-top: 101px;
  }  
}

@media only screen and (max-width: 1022px) {
  .main-header.quick-access + * {
    padding-top: 100px;
  }  
}

@media only screen and (max-width: 900px) {
  .main-header.quick-access + * {
    padding-top: 98px;
  }  
}

@media only screen and (max-width: 880px) {
  .main-header.quick-access + * {
    padding-top: 89px;
  } 
}

@media only screen and (max-width: 800px) {
  .main-header.quick-access + * {
    padding-top: 86px;
  } 
}

@media only screen and (max-width: 750px) {
  .main-header.quick-access + * {
    padding-top: 19px;
  } 
}

@media only screen and (max-width: 680px) {
  .main-header.quick-access + * {
    padding-top: 17px;
  } 
}

.overlay-menu-open .main-header.quick-access {
  border-color: transparent;
}

.main-header.quick-access.collapse {
  transform: translateY(-75px);
}

.main-header.quick-access.no-transition {
  transition: none;
}

/* burger menu with some links */
@media only screen and (max-width: 1690px) {
  .main-nav .right-nav .hide-on-initial-reduction {
    display: none;
  }

  .burger-icon-button {
    display: flex;
  }

  .main-nav .left-nav li {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1370px) {
  .logo {
    max-width: 435px;
  }
  
  .tagline {
    margin-top: 10px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 1250px) {
  .main-nav .right-nav .hide-on-later-reduction {
    display: none;
  }

  .burger-icon-button .text{
    display: inline;
  }

  .burger-icon-button .icon {
    margin-left: 16px;
  }
}

@media only screen and (max-width: 1140px) {
  .logo {
    max-width: 420px;
  }

  .tagline {
    margin-top: 8px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 1022px) {
  .logo {
    max-width: 42.5vw;
    max-width: min(max(200px, 42.5vw), 400px);
    max-width: clamp(200px, 42.5vw, 400px);
  }
}

@media only screen and (max-width: 980px) {
  .main-nav {
    flex-direction: row-reverse;
    align-items: center;
    max-width: 89.5%;
  }

  .main-nav .left-nav li {
    margin: 0;
  }

  .burger-icon-button .text{
    display: none;
  }

  .main-nav .search-button-icon {
    margin: 0;
  }

  .search-button .text {
    display: none;
  }

  .burger-icon-button .icon {
    margin-left: 0;
  }
}

@media only screen and (max-width: 880px) {
  .tagline {
    margin-top: 7px;
  }

  .header-logo {
    margin-top: 44px;
    margin-bottom: 45px;
  }
}

/* between tablet and mobile view */
@media only screen and (max-width: 750px) {
  .tagline {
    display: none;
  }

  .logo {
    max-width: 37vw;
    max-width: min(max(244px, 37vw), 300px);
    max-width: clamp(244px, 37vw, 300px);
  }

  .header-logo {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .main-nav {
    max-width: 87%;
    margin-top: 22px;
  }
}

/* mobile view */
@media only screen and (max-width: 650px) {
  .logo {
    max-width: 230px;
  }

  .header-logo {
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .main-nav {
    max-width: 91.6%;
    margin-top: 14px;
  }

  body:not(.bb) .main-header {
    position: sticky;
    z-index: 10;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid transparent;
    transition: border-color .2s;  
  }

  .main-header.border-bottom {
    border-color: var(--grey-c);
  }

  .header-logo {
    transition: opacity .2s;
  }

  .header-logo.low-z-index {
    z-index: -1;
    opacity: 0;
  }

  .main-nav.fixed {
    position: absolute;
  }

  body:not(.bb) .header-logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1px;
    padding-bottom: 3px;
  }
}

@media only screen and (max-width: 490px) {
  .logo {
    max-width: 210px;
  }

  .header-logo {
    margin-top: 23px;
    margin-bottom: 23px;
  }

  .main-nav {
    max-width: 91.6%;
    margin-top: 16px;
  }

  .search-button {
    max-width: 37px;
  }

  .burger-icon-button .icon {
    height: 14px;
    width: 17px;
  }

  .main-nav .search-button-icon.mobile-screen-size {
    display: inline-block;
  }

  .main-nav .search-button-icon.non-mobile-screen-size {
    display: none;
  }
}

@media only screen and (max-width: 420px) {
  .logo {
    max-width: 51vw;
    max-width: min(max(165px, 51vw), 210px);
    max-width: clamp(165px, 51vw, 210px);
  }

  .header-logo {
    margin-top: calc(32px - 2.17vw);
    margin-bottom: calc(32px - 2.17vw);
  }

  .main-nav {
    max-width: 91%;
  }
}


/* overlay menu */

.transition-screen-1 {
  height: 100%;
  opacity: 1;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: 9;
  transition: opacity .3s;
}

.transition-screen-1.hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 10;
  overflow: scroll;
}

.main-links .large {
  font-family: var(--serif);
  font-size: 55px;
  font-weight: 400;
}

.main-links .large:not(.magenta-color) {
  color: var(--black);
}

.main-links .side-number {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 300;
  color: var(--grey-b);
  margin-top: 17px;
  margin-right: 15px;
}

.main-links .side-number.hidden {
  opacity: 0;
  pointer-events: none;
}

.main-links {
  margin: 40px 40px 10vh 8.5vw;
  margin: 40px 40px min(10vh, 140px) 8.5vw;
}

.overlay-menu .right {
  margin: 40px 8.5vw 10vh 40px;
  margin: 40px 8.5vw min(10vh, 140px) 40px;
}

.main-links ul {
  list-style-type: none;
}

.main-links .link {
  padding: 9px 22px;
  display: flex;
  transition: opacity .4s, transform .4s, color .2s;
}

.main-links .link.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(25px);
}

.main-links button svg {
  color: var(--magenta);
  margin-left: 10px;
  align-self: center;
  transition: color .2s;
}

.overlay-menu .search-form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 29vh;
  margin-bottom: max(29vh, 150px);
  transition: opacity .3s;
}

.overlay-menu .search-form.hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-menu .search-form label,  .overlay-menu .search-form .input{
  align-self: flex-start;
}

.overlay-menu .search-form label {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 160.5%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.overlay-menu .search-form input {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  border-bottom: 2px solid var(--black);
  padding: 15px 16px;
  padding-left: 60px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  background-color: transparent;
  width: 450px;
  color: var(--black);
}

.overlay-menu .search-form input:focus {
  outline: none;
}

.overlay-menu .search-form input::placeholder {
  color: var(--grey-b);
  font-size: 25px;
  font-family: var(--serif);
  font-weight: 400;
}

.overlay-menu .search-form input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.overlay-menu .search-form input::-webkit-search-cancel-button{
  -webkit-appearance: none;
}

.overlay-menu .search-form .submit-button {
  width: 439px;
  position: absolute;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  right: 0;
}

.overlay-menu .search-form .submit-button button {
  pointer-events: all;
  padding: 6px 8px;
  margin: 12px 0px;
  display: flex;
  align-items: center;
}

.overlay-menu .search-form .search-button-icon {
  fill: var(--grey-b);
  transition: fill .2s;
}

.overlay-menu .search-form button:hover > .search-button-icon {
  fill: var(--black);
}

.overlay-menu .submit-button button {
  background-color: var(--white);
}

.overlay-menu .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 35px;
  transition: opacity .3s;
}

.overlay-menu .contact.hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-menu .social-links {
  display: inline-block;
}

.overlay-menu .contact address {
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--grey-b-light-no-transparency);
  display: inline-block;
  margin-bottom: 42px;
  transition: border-color .2s;
}

.overlay-menu .contact address.hover {
  border-color: var(--grey-g);
}

.overlay-menu .social-links a {
  margin-right: 0;
  padding-right: 14px;
}

.overlay-menu .last-link {
  margin: 0;
}

.overlay-menu .arrow-small {
  display: none;
}

.overlay-menu a, .overlay-menu p {
  transition: color 0.3s, opacity .3s;
}

.overlay-menu .social-links a {
  transition: fill .3s;
}

.overlay-menu a.dim p, .overlay-menu a.dim {
  color: var(--grey-b)!important;
  fill: var(--grey-b)!important;
}

.overlay-menu .main-links button.dim .magenta-color, .overlay-menu .main-links a.dim .magenta-color {
  color: var(--magenta-32)!important;
}

.main-links button.dim svg {
  color: var(--magenta-32)!important;
}

.overlay-menu a.stay-bright p, .overlay-menu a.stay-bright {
  color: var(--black)!important;
  fill: var(--black)!important;
}

.overlay-menu .main-links button.stay-bright .magenta-color, .overlay-menu .main-links a.stay-bright .magenta-color {
  color: var(--magenta)!important;
}

.main-links button.stay-bright svg {
  color: var(--magenta)!important;
}

.overlay-menu .main-links a.dim .side-number {
  color: var(--grey-b)!important;
  opacity: 0.5!important;
}

.overlay-menu .main-links a.stay-bright .side-number {
  color: var(--grey-b)!important;
  opacity: 1!important;
}

.overlay-menu .main-links a.book-menu-link .side-number {
  opacity: 0!important;
}

.overlay-menu .hover-image {
  width: 350px;
  height: 500px;
  position: absolute;
  transition: top .4s ease-out, left .4s ease-out;
}

.overlay-menu .hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-menu .hover-image .hidden {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 1100px) {
  .overlay-menu .search-form input {
    width: 385px;
  }

  .overlay-menu .search-form .submit-button {
    width: 374px;
  }

  .overlay-menu .right {
    margin: 40px 8.5vw 10vh 20px;
    margin: 40px 8.5vw min(10vh, 140px) 20px;
  }

  .main-links .large {
    font-size: 50px;
  }

  .main-links .side-number {
    margin-top: 14px;
  }

  .main-links .link {
    padding: 8px 22px;
  }
}

/* remove right */
@media only screen and (max-width: 1000px), only screen and (max-height: 755px) {
  .overlay-menu .right {
    display: none;
  }

  .overlay-menu {
    align-items: flex-start;
  }

  .main-links .large {
    font-size: 44px;
  }

  .main-links {
    margin: calc(70px + 8vh) 0 0 12vw;
    margin: calc(70px + min(max(80px, 8vh), 140px)) 0 0 max(12vw, 60px);
    margin: calc(70px + clamp(80px, 8vh, 140px)) 0 0 max(12vw, 60px);
  }
}

@media only screen and (max-width: 600px), only screen and (max-height: 755px) {
  .main-links {
    margin: calc(30px + 14vh) 0 0 9vw;
    margin: calc(30px + min(max(97px, 14vh), 140px)) 0 0 max(9vw, 60px);
    margin: calc(30px + clamp(97px, 14vh, 140px)) 0 0 max(9vw, 60px);
  }

  .main-links .side-number {
    margin-top: 11px;
  }

  .overlay-menu .arrow-small {
    display: inline-block;
  }

  .overlay-menu .arrow-large {
    display: none;
  }
}

@media only screen and (max-width: 550px), only screen and (max-height: 620px) {
  .main-links .large {
    font-family: var(--serif);
    font-size: 35px;
    font-size: min(max(20px, 10vw), 35px);
    font-size: clamp(20px, 10vw, 35px);
  }

  .main-links .side-number {
    font-size: 19px;
    margin-top: 7px;
  }

  .main-links {
    margin: calc(30px + 16vh) 0 0 10.7vw;
    margin: calc(30px + min(max(65px, 16vh), 140px)) 0 0 max(10.7vw, 10px);
    margin: calc(30px + clamp(65px, 16vh, 140px)) 0 0 max(10.7vw, 10px);
  }

  .main-links button svg {
    margin-left: 7px;
  }
}

@media only screen and (max-width: 550px) {
  .main-links {
    margin: calc(30px + 13vh) 0 0 10.7vw;
    margin: calc(30px + min(max(55px, 13vh), 105px)) 0 0 max(10.7vw, 10px);
    margin: calc(30px + clamp(55px, 13vh, 105px)) 0 0 max(10.7vw, 10px);
  }
}

@media only screen and (max-width: 355px) {
  .main-links {
    margin: calc(30px + 8vh) 0 0 9.2vw;
    margin: calc(30px + min(max(80px, 8vh), 140px)) 0 0 max(9.2vw, 10px);
    margin: calc(30px + clamp(80px, 8vh, 140px)) 0 0 max(9.2vw, 10px);
  }
}


/* search overlay */

.search-overlay {
  position: sticky;
  width: 100%;
  background-color: var(--magenta);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 71px;
  transition: opacity .3s, height .3s;
  top: 0;
  z-index: 11;
}

.search-overlay .close-button {
  justify-self: flex-end;
  right: 0;
  top: 0;
  padding: 5px 5px;
  margin-right: 4.6vw;
  transition: opacity .2s;
}

.search-overlay .close-button.hidden {
  opacity: 0;
  pointer-events: none;
}

.search-overlay .close-button .icon {
  stroke: var(--white);
  opacity: .8;
  transition: opacity .2s;
}

.search-overlay .close-button:hover > .icon {
  opacity: 1;
}

.search-overlay.hide {
  height: 0;
  opacity: 1;
}

/*changes highlight colour*/
.search-overlay ::selection {
  background: var(--white); /* WebKit/Blink Browsers */
  color: var(--magenta);
}

.search-overlay ::-moz-selection {
  background: var(--white); /* Gecko Browsers */
  color: var(--magenta);
}

.search-overlay .search-form {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: opacity .2s;
  padding: 5px 0;
  margin-left: 4vw;
  width: 80%;
}

.search-overlay .search-form.hidden {
  opacity: 0;
  pointer-events: none;
}

.search-overlay .search-form label,  .overlay-menu .search-form .input{
  align-self: flex-start;
}

.search-overlay .search-form label {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 160.5%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.search-overlay .search-form input {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  /*border-bottom: 2px solid var(--white);*/
  padding: 17px 16px;
  padding-left: 60px;
  font-family: var(--sans-serif);
  font-weight: 400;
  font-size: 16px; /*25px;*/
  background-color: transparent;
  width: 100%;
  color: var(--white);
}

.search-overlay .search-form input:focus {
  outline: none;
}

.search-overlay .search-form input::placeholder {
  color: var(--white);
  opacity: .6;
  font-size: 16px; /*25px;*/
  font-family: var(--sans-serif);
  font-weight: 400;
}

.search-overlay .search-form input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.search-overlay .search-form input::-webkit-search-cancel-button{
  -webkit-appearance: none;
}

.search-overlay .search-form .submit-button {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  left: 13px;
}

.search-overlay .search-form .submit-button button {
  pointer-events: all;
  padding: 5px 8px;
  margin: 11px 0px;
  display: flex;
  align-items: center;
}

.search-overlay .search-form.hidden .submit-button button {
  pointer-events: none;
}

.search-overlay .search-form .search-button-icon {
  fill: var(--white);
  opacity: .8;
  transition: opacity .2s;
}

.search-overlay .search-form button:hover > .search-button-icon {
  opacity: 1;
}

@media only screen and (max-width: 650px) {
  .search-overlay .search-form {
    margin-left: 2vw;
  }

  .search-overlay .close-button {
    margin-right: 4.2vw;
  }

  .search-overlay {
    height: 73px;
  }
}


/* subscribe overlay */

.subscribe-overlay {
  position: fixed;
  z-index: 17;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 70px;
  pointer-events: none;
}

.subscribe-overlay .content {
  background-color: var(--white);
  display: flex;
  max-height: 657px;
  max-width: 1055px;
  width: 100%;
  height: 100%;
  pointer-events: all;
  transition: width .45s, height .3s, transform .3s, opacity .3s;
  transform: translateY(0px);
  overflow: scroll;
}

/* hide scrollbars for both sub overlay and overlay menu */
.overlay-menu, .subscribe-overlay .content {
  scrollbar-width: none; /* for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.overlay-menu::-webkit-scrollbar, .subscribe-overlay .content::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.overlay-menu, .subscribe-overlay .content {
  scrollbar-color: transparent transparent;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  overscroll-behavior: none;
}

.subscribe-overlay .content.hidden {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

.subscribe-overlay .left {
  height: 100%;
  background-image: url("/assets/Meatballs.jpg");
  background-color: var(--grey-a);
  position: relative;
  flex-grow: 1;
  transition: height .25s;
}

.subscribe-overlay .left.hidden {
  height: 0;
}

.subscribe-overlay .image-overlay {
  width: 100%;
  height: 100%;
  background-color: var(--overlay-background-a);
  opacity: .13;
  position: absolute;
}

.subscribe-overlay .right {
  display: flex;
  flex-direction: column;
  min-width: 60%;
  justify-content: center;
  padding: 40px 7vw; 
  padding: 40px min(95px, 7vw);
  padding-left: 7.5vw;
  padding-left: min(100px, 7.5vw);
  position: relative;
  transition: opacity .2s, transform .2s;
}

.subscribe-overlay .right.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.subscribe-overlay .close-button {
  position: absolute;
  top: 30px;
  right: 38px;
  transition: opacity .2s;
}

.subscribe-overlay .close-button.hidden {
  opacity: 0;
}

.subscribe-overlay .close-button .icon {
  stroke: var(--grey-e);
  transition: stroke .2s;
}

.subscribe-overlay .close-button:hover > .icon {
  stroke: var(--magenta);
}

.subscribe-overlay .right .heading-with-line {
  margin-bottom: 58px;
}

.subscribe-overlay .subscribe-form {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}

.subscribe-overlay .subscribe-form label,  .main-footer .subscribe-form .input{
  align-self: flex-start;
}

.subscribe-overlay .subscribe-form label {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 37px;
  line-height: 155%;
  max-width: 429px;
}

.subscribe-overlay .subscribe-form .input {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-start;
}

.subscribe-overlay .subscribe-form input {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 22px 22px;
  padding-left: 34px;
  font-weight: 400;
  font-size: 16px;
  background-color: transparent;
  width: 308px;
  color: var(--black);
  background-color: var(--grey-d);
  z-index: 2;
}

.subscribe-overlay .subscribe-form input:focus {
  outline: none;
}

.subscribe-overlay .subscribe-form input::placeholder {
  color: var(--grey-e);
}

.subscribe-overlay .subscribe-form input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.subscribe-overlay .subscribe-form input::-webkit-search-cancel-button{
  -webkit-appearance: none;
}

.subscribe-overlay .subscribe-form .submit-button {
  pointer-events: none;
  height: 100%;
}

.subscribe-overlay .subscribe-form .submit-button button {
  pointer-events: all;
  height: 100%;
  min-width: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--magenta);
  position: relative;
  transition: background-color .2s;
}

.subscribe-overlay .content.hidden .subscribe-form .submit-button button {
  pointer-events: none;
}

.subscribe-overlay .subscribe-form .submit-button button:active {
  background-color: var(--magenta-32);
}

.subscribe-overlay .subscribe-form .right-arrow {
  fill: var(--white);
  transition: fill .2s, transform .3s, opacity .2s;
  transform: translateX(0) rotate(180deg);
  margin-left: -1px;
}

.subscribe-overlay .subscribe-form .right-arrow.b {
  transform: translateX(-70px) rotate(180deg);
  position: absolute;
}

.transition-screen-2 {
  height: 100%;
  opacity: 1;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--overlay-background-a);
  z-index: 16;
  transition: opacity .3s;
  pointer-events: all;
}

.transition-screen-2.hidden {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 980px) {
  .subscribe-overlay .content {
    flex-direction: column;
  }

  .subscribe-overlay .left {
    height: 30%;
    flex-grow: unset;
  }

  .subscribe-overlay .right {
    margin: auto 0;
    padding: 60px 9vw;
    padding: 60px min(110px, 9vw);
    padding-left: 9.5vw; 
    padding-left: min(130px, 9.5vw);  
  }
}

/* removes the image when it gets to narrow */
@media only screen and (max-width: 980px) and (min-width: 780px) and (max-height: 690px), only screen and (max-width: 780px) and (min-width: 601px) and (max-height: 650px), only screen and (max-width: 600px) and (min-width: 501px) and (max-height: 580px), only screen and (max-width: 500px) and (max-height: 550px) {
  .subscribe-overlay .left {
    display: none;
  }

  .subscribe-overlay .content {
    width: auto;
    position: relative;
  }

  .subscribe-overlay .right {
    position: unset;
  }
}

@media only screen and (max-width: 660px) {
  .subscribe-overlay {
    padding: 50px 50px;
  }
}

@media only screen and (max-width: 600px) {
  .subscribe-overlay .subscribe-form input {
    width: 100%;
  }

  .subscribe-overlay .subscribe-form .input {
    width: 100%;
  }
}

/* mobile */
@media only screen and (max-width: 600px) {
  .subscribe-overlay {
    padding: 0;
  }

  .subscribe-overlay .content {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
  }

  .subscribe-overlay .right {
    margin: 0;
  }

  .subscribe-overlay .subscribe-form .input {
    max-width: 375px;
  }

  .subscribe-overlay .subscribe-form {
    padding-bottom: 50px;
  }
}

/* footer */

.main-footer {
  display: flex;
  padding: 91px;
  padding-left: 7.2vw;
  justify-content: space-between;
}

/* establish flex-grow */
.main-footer .contact {
  flex-grow: 1.3;
}
.main-footer .links {
  flex-grow: 1.3;
}
.main-footer .subscribe-form {
  flex-grow: 1;
}

.main-footer ul {
  list-style-type: none;
}

.footer-logo {
  max-width: 284px;
}

.footer-logo-wrap {
  margin-bottom: 52px;
}

footer address {
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 16px;
}

address a {
  display: inline-block;
  line-height: 167.5%;
}

.social-links ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.social-links a {
  padding: 4px;
  margin-right: 10px;
  fill: var(--black);
  transition: fill 0.2s;
}

.social-links a.ig {
  padding-left: 0px;
}

footer .social-links a:hover {
  fill: var(--magenta);
}

footer .links {
  display: flex;
}

.main-footer .links .recipes {
  margin-right: 95px;
}

.main-footer .links h6 {
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--green-grey-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

footer .links a {
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
}

footer .links a::after, footer address a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin-top: -0px;
  background: var(--magenta);
  transition: width 0.25s;
}

/* adds underline hover effect */
@media only screen and (hover: hover) and (pointer: fine) {
  footer .links a:hover::after, footer address a:hover::after {
    width: 100%;
  }
}

.main-footer .links a {
  margin-bottom: 4px;
}

.main-footer .links a.last-link {
  margin-bottom: 0px;
}

.main-footer .links a.all-recipes {
  margin-top: 17px;
  line-height: 167.5%;
}

.main-footer .subscribe-form {
  display: flex;
  flex-direction: column;
}

.main-footer .subscribe-form label,  .main-footer .subscribe-form .input{
  align-self: flex-start;
}

.main-footer .subscribe-form label {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 160.5%;
}

.main-footer .subscribe-form input {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  border-bottom: 2px solid var(--black);
  padding: 12px 16px;
  font-weight: 500;
  font-size: 16px;
  background-color: transparent;
  width: 304px;
  color: var(--black);
}

.main-footer .subscribe-form input:focus {
  outline: none;
}

.main-footer .subscribe-form input::placeholder {
  color: var(--green-grey-text);
}

.main-footer .subscribe-form input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.main-footer .subscribe-form input::-webkit-search-cancel-button{
  -webkit-appearance: none;
}

.main-footer .subscribe-form .submit-button {
  width: 297px;
  position: absolute;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.main-footer .subscribe-form .submit-button button {
  pointer-events: all;
  padding: 6px 8px;
  margin: 4px 0px;
  display: flex;
  align-items: center;
}

.main-footer .subscribe-form .right-arrow {
  fill: var(--black);
  transition: fill .2s;
}

.main-footer .subscribe-form button:hover > .right-arrow {
  fill: var(--magenta);
}

.main-footer label.small-screen {
  display: none;
}

.small-screen-footer {
  display: none;
}

@media only screen and (max-width: 1710px) {
  .main-footer label.small-screen {
    display: inline-block;
  }
  .main-footer label.large-screen {
    display: none;
  }
}

@media only screen and (max-width: 1490px) {
  .main-footer {
    padding: 80px;
    padding-left: 6.5vw;
  }
  .main-footer .subscribe-form {
    flex-grow: 0.4;
  }
  .footer-logo {
    max-width: 250px;
  }
}

@media only screen and (max-width: 1310px) {
  .footer-logo {
    max-width: 220px;
  }
  .footer-logo-wrap {
    margin-bottom: 42px;
  }
  .main-footer {
    padding: 70px;
    padding-left: 6vw;
  }
  .main-footer .links .recipes {
    margin-right: 75px;
  }
}

@media only screen and (max-width: 1250px) {
  .footer-logo {
    max-width: 210px;
  }
  .main-footer {
    padding: 65px;
    padding-left: 5.9vw;
  }
  .main-footer .links .recipes {
    margin-right: 65px;
  }
}

/* small screen footer */
@media only screen and (max-width: 1200px) {
  .small-screen-footer {
    display: block;
  }
  .main-footer .contact {
    display: none;
  }
  .main-footer {
    padding: 91px;
    padding-left: 9.4vw;
    padding-bottom: 0;
    max-width: 95vw;
    margin: 0 auto;
  }
  .main-footer .links .recipes {
    margin-right: 95px;
  }
  .small-screen-footer {
    padding: 91px;
    padding-top: 62px;
    padding-bottom: 60px;
    max-width: 95vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .small-screen-footer .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .small-screen-footer .footer-logo-wrap {
    margin: 0;
  }
  .small-screen-footer .social-links a.last-link {
    margin: 0;
  }
  .small-screen-footer address {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1100px) {
  .main-footer {
    max-width: none;
    margin: 0 0;
    padding-left: 9.8vw;
  }
  .small-screen-footer {
    max-width: none;
    margin: 0 0;
  }
}

@media only screen and (max-width: 1030px) {
  .main-footer {
    padding: 80px;
    padding-left: 9.6vw;
    padding-top: 75px;
    padding-bottom: 0;
  }
  .main-footer .links .recipes {
    margin-right: 80px;
  }
  .small-screen-footer {
    padding: 80px;
    padding-top: 55px;
    padding-bottom: 50px;
  }
}

/* mobile */
@media only screen and (max-width: 970px) {
  .main-footer {
    flex-direction: column-reverse;
    align-items: center;
    padding-left: 80px;
  }
  .main-footer label.small-screen {
    display: none;
  }
  .main-footer label.large-screen {
    display: inline-block;
  }
  .main-footer .subscribe-form .input {
    align-self: center;
  }
  .main-footer .subscribe-form {
    margin-bottom: 85px;
    align-items: center;
  }
  .main-footer .links {
    min-width: 45vw;
    justify-content: space-between;
  }
  .small-screen-footer {
    padding-top: 75px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main-footer {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

@media only screen and (max-width: 500px) {
  .main-footer .links {
    min-width: 0;
    justify-content: center;
  }
  .main-footer .links .recipes {
    margin-right: 50px;
  }
}

@media only screen and (max-width: 460px) {
  .main-footer .subscribe-form .input {
    align-self: flex-start;
  }
  .main-footer {
    padding-top: 60px 
  }
}

@media only screen and (max-width: 430px) {
  .main-footer .links .recipes {
    margin-right: 40px;
  }
  .main-footer .a-cooks-plot {
    min-width: 124px;
  }
  .main-footer .subscribe-form .input {
    width: 100%;
    position: relative;
  }
  .main-footer .subscribe-form input {
    width: 100%;
    max-width: 100%;
  }
  .main-footer .subscribe-form .submit-button {
    width: 98%;
    max-width: 98%;
  }
}

@media only screen and (max-width: 420px) {
  .main-footer .links {
    flex-direction: column;
    align-self: flex-start;
    margin-left: 6vw;
  }
  .main-footer .links .recipes {
    margin-bottom: 40px;
  }
  .main-footer .links .recipes {
    margin-left: 0;
  }
  .small-screen-footer {
    padding-top: 75px;
    padding-bottom: 40px;
  }
}


/* read/learn more link */

.read-more-link {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
}

.read-more-link .text-and-arrow {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  color: var(--magenta);
}

.read-more-link span {
  margin-right: 6px;
}

.right-arrow {
  fill: var(--magenta);
  transform: rotate(180deg);
}

.read-more-link .lines {
  height: 2px;
  width: 100%;
  margin-top: 4px;
}

.read-more-link .line {
  background-color: var(--magenta-32);
  height: 2px;
  width: 100%;
}

.read-more-link .hover-line {
  height: 2px;
  width: 0%;
  margin-top: -2px;
  background-color: var(--magenta);
  transition: width 0.25s;
}

.read-more-link:hover > .lines > .hover-line {
  width: 100%;
}

.read-more-link:active > .lines > .hover-line {
  width: 100%;
  transition: none;
}


/* heading with line */
.heading-with-line {
  display: flex;
  flex-direction: column;
}

.heading-with-line .title {
  margin-bottom: 13px;
}

.heading-with-line .line {
  height: 2px;
  width: 34px;
  background-color: var(--magenta);
}


/* stan-img-txt section */

section.stan-img-txt {
  background-color: var(--green-grey-background);
  width: 100%;
  display: flex;
  padding: 70px; 
  justify-content: center;
}

section.stan-img-txt .left, section.stan-img-txt .right{
  width: 50%;
}

section.stan-img-txt .left {
  padding: 81px;
  padding-right: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
}

section.stan-img-txt .left .title {
  margin-bottom: 15px;
}

section.stan-img-txt .right {
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */

  min-height: 450px;
  max-width: 820px;
}

section.stan-img-txt .read-more-link {
  align-self: flex-end;
  margin-top: 60px;
}

/* garden suite */
section.garden {
  background-color: var(--white);
  flex-direction: row-reverse;
}

.garden.stan-img-txt .left {
  padding: 81px;
  padding-left: 150px;
}
/* end */

@media only screen and (max-width: 1540px) {
  section.stan-img-txt {
    padding: 70px; 
  }

  section.stan-img-txt .left {
    padding: 4.2vw;
    padding-right: 9.2vw;
  }

  /* garden suite */
  .garden.stan-img-txt .left {
    padding: 4.2vw;
    padding-left: 9.2vw;
  }
}

@media only screen and (max-width: 1500px) {
  section.stan-img-txt {
    padding: 66px; 
  }

  section.stan-img-txt .left {
    padding: 3.6vw;
    padding-right: 8.6vw;
  }

  section.stan-img-txt .read-more-link {
    margin-top: 45px;
  }

  /* garden suite */
  .garden.stan-img-txt .left {
    padding: 3.6vw;
    padding-left: 8.6vw;
  }
}

@media only screen and (max-width: 1380px) {
  section.stan-img-txt .left {
    padding: 3vw;
    padding-right: 8vw;
  }

  /* garden suite */
  .garden.stan-img-txt .left {
    padding: 3vw;
    padding-left: 8vw;
  }
}

@media only screen and (max-width: 1300px) {
  section.stan-img-txt {
    padding: 0px;
  }

  section.stan-img-txt .left {
    width: 55%;
    padding: 100px 88px;
  }

  /* garden suite */
  .garden.stan-img-txt .left {
    width: 55%;
    padding: 100px 88px;
  }

  section.stan-img-txt .right {
    width: 45%;
  }

  .garden.stan-img-txt {
    padding-bottom: 81px;
    padding-top: 81px;
  }
}

/* mobile view */
@media only screen and (max-width: 1022px) {
  section.stan-img-txt {
    flex-direction: column-reverse;
  }

  section.stan-img-txt .right {
    width: 100%;
    min-height: unset;
    height: 350px;
    height: max(50vw, 350px);
    max-width: 100%;
  }

  section.stan-img-txt .left {
    width: 100%;
    padding-top: 78px;
    padding-bottom: 93px;
    margin: 0 auto;
  }

  /* garden suite */
  .garden.stan-img-txt .left {
    width: 100%;
    padding-top: 78px;
    padding-bottom: 93px;
  }

  .garden.stan-img-txt {
    padding-bottom: 0px;
    padding-top: 0px;
  }
}

@media only screen and (max-width: 650px) {
  section.stan-img-txt .left {
    padding: 78px 75px 93px 75px;
  }

  /* garden suite */
  .garden.stan-img-txt .left {
    padding: 78px 75px 93px 75px;
  }
}

@media only screen and (max-width: 510px) {
  section.stan-img-txt .left {
    padding: 65px 12vw 88px 12vw;
  }

  /* garden suite */
  .garden.stan-img-txt .left {
    padding: 65px 12vw 88px 12vw;
  }
}


/* Latest Recipes section */

.latest-recipes {
  padding-top: 85px;
  padding-bottom: 85px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--green-grey-background);
}

.latest-recipes .content {
  width: 100%;
  max-width: 1449px;
  padding-left: 30px;
  padding-right: 30px;
}

.latest-recipes .heading-with-line {
  margin-bottom: 60px;
  margin-left: 28px;
  margin-right: 28px;
}

.latest-recipes .heading-with-line h2 {
  font-size: 30px;
}

/*.latest-recipes .recipe-link {
  min-width: 315px;
  width: 315px;
  max-width: 350px;
  margin: 0 max(min(1.8vw, 22px), 18px);
  margin-bottom: 50px;
}*/

/*.latest-recipes .recipe .recipe-image, .latest-recipes .recipe .overlay {
  min-height: 270px;
  max-height: 270px;
}*/

@media only screen and (max-width: 1247px) {
  .my-recipes .heading-with-line, .latest-recipes .heading-with-line {
    margin-left: 10%;
  }
}


/* =====================
  Home page
======================== */

/* My Recipes section */

.my-recipes {
  padding-top: 85px;
  padding-bottom: 92px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.my-recipes .content {
  width: 100%;
  max-width: 1449px;
  padding-left: 30px;
  padding-right: 30px;
}

.my-recipes .heading-with-line {
  margin-bottom: 50px;
  margin-left: 28px;
  margin-right: 28px;
}

.featured-recipe {
  min-height: 444px;
  background-color: var(--green-grey-background);
  display: flex;
  margin-bottom: 87px;
  margin-left: 28px;
  margin-right: 28px;
  width: auto;
}

.featured-recipe .left {
  min-height: 100%;
  max-height: 100%;
  /*min-width: 400px;
  max-width: 539px;*/
  flex-shrink: 1;
  min-width: 250px;
  width: 539px;
  max-width: 539px;
}

.featured-recipe .right {
  display: flex;
  flex-direction: column;
  padding-left: 8%;
  padding-left: min(max(80px, 8%), 105px);
  padding-left: clamp(80px, 8%, 105px); /*105px min(7%, 105px)*/
  position: relative;
  flex-shrink: 6;
  flex-grow: 1;
  min-width: 500px;
}

.featured-recipe .banner-wrap {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
}

.featured-recipe .banner {
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background-color: var(--magenta);
  padding: 14px 27px;
  padding-right: 53px;
  color: var(--white);
  margin-top: 37px;
}

.featured-recipe .main-text-content {
  display: flex;
  flex-direction: column;
  padding: 86px 0;
  margin: auto 0;
  max-width: 80%;
  max-width: min(80%, 462px); /* 68% */
}

.recipe-category-title {
  color: var(--magenta);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: var(--sans-serif);
}

.featured-recipe .recipe-category-title {
  font-size: 13px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.featured-recipe .recipe-title {
  margin-bottom: 15px;
  font-size: 30px;
}

.featured-recipe .recipe-title.no-category {
  margin-top: 18px;
}

.home .my-recipes .featured-recipe .recipe-title.no-category {
  margin-top: 50px;
}

.featured-recipe .read-more-link {
  align-self: flex-end;
  margin-top: 56px;
  display: inline-flex;
}

@media only screen and (max-width: 1300px) {
  .featured-recipe .main-text-content {
    padding-top: 100px;
    padding-bottom: 75px;
  }

  .featured-recipe .read-more-link {
    margin-top: 44px;
  }
}

@media only screen and (max-width: 1150px) {
  .my-recipes .content, .latest-recipes .content {
    max-width: 1429px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* mobile view */
@media only screen and (max-width: 1022px) {
  .featured-recipe {
    flex-direction: column;
  }

  .featured-recipe .left {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    height: 500px;
    height: min(500px, 65vw);
  }

  .featured-recipe .right {
    flex-shrink: 0;
    padding-left: 0;
  }

  .featured-recipe .recipe-title.no-category {
    margin-top: 20px;
  }

  .home .my-recipes .featured-recipe .recipe-title.no-category {
    margin-top: 20px;
  }

  .featured-recipe .main-text-content {
    margin: 0 0;
    padding-top: 50px;
    padding-left: 11.5%;
    padding-left: min(max(80px, 11.5%), 105px);
    padding-left: clamp(80px, 11.5%, 105px);
    max-width: 65%;
  }

  .featured-recipe .read-more-link {
    /*position: absolute;
    bottom: 0;
    margin-bottom: 75px;
    margin-right: -80px;*/
    margin-top: 38px;
  }

  .my-recipes .heading-with-line, .latest-recipes .heading-with-line {
    margin-left: 8%;
  }
}

@media only screen and (max-width: 780px) {
  .featured-recipe .left {
    height: 65vw;
    height: min(500px, 65vw);
  }
}

@media only screen and (max-width: 725px) {
  .featured-recipe .main-text-content {
    padding-left: 12.2%;
    padding-left: min(max(80px, 11.5%), 105px);
    padding-left: clamp(80px, 11.5%, 105px);
  }
}

@media only screen and (max-width: 910px) {
  .featured-recipe .main-text-content {
    padding-top: 75px;
  }

  .featured-recipe .banner {
    margin-top: 28px;
  }

  .featured-recipe .main-text-content {
    max-width: 100%;
    padding-right: 11.5%;
    padding-right: min(max(80px, 11.5%), 105px);
    padding-right: clamp(80px, 11.5%, 105px);
  }

  .featured-recipe .right {
    min-width: unset;
  }
}

@media only screen and (max-width: 650px) {
  .featured-recipe .main-text-content {
    max-width: 100%;
    padding-right: 13%;
    padding-left: 13%;
  }

  .featured-recipe {
    margin-left: 20px;
    margin-right: 20px;
  }

  .featured-recipe .main-text-content {
    padding-top: 82px;
    padding-bottom: 62px;
  }
}

@media only screen and (max-width: 510px) {
  .my-recipes .content, .latest-recipes .content {
    padding-right: 0;
    padding-left: 0;
  }

  .featured-recipe {
    margin-left: 0px;
    margin-right: 0px;
  }

  .featured-recipe .banner {
    padding-right: 40px;
  }

  .my-recipes .heading-with-line, .latest-recipes .heading-with-line {
    margin-left: 10%;
  }

  .featured-recipe .recipe-title.no-category {
    margin-top: 25px;
  }

  .home .my-recipes .featured-recipe .recipe-title.no-category {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 380px) {
  .featured-recipe .main-text-content {
    padding-right: 11%;
    padding-left: 11%;
  }
}

@media only screen and (max-width: 350px) {
  .featured-recipe .banner {
    padding-right: 27px;
  }
}

.recipes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.recipe {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.recipe-link {
  margin: 0 26px;
  margin: 0 max(min(1.8vw, 26px), 23px);
  margin-bottom: 80px;
  flex-grow: 1;
  min-width: 350px;
  width: 350px;
  max-width: 407px;
}

.recipe .recipe-image {
  min-height: 305px;
  max-height: 305px;
  min-width: 100%;
  max-width: 100%;
  background-color: var(--grey-c);
}

.recipe-link .overlay {
  position: absolute;
  min-height: 305px;
  max-height: 305px;
  min-width: 100%;
  max-width: 100%;
  background-color: rgba(24, 24, 24, 0.20);
  opacity: 0;
  transition: opacity 0.2s;
}

.recipe-link:hover > .recipe > .overlay {
  opacity: 1;
}

.recipe .recipe-category-title, .recipe .recipe-title {
  max-width: 75%;
  text-align: center;
}

.latest-recipes .recipe .recipe-category-title, .latest-recipes .recipe .recipe-title {
  max-width: 85%;
}

.recipe .recipe-category-title {
  margin-top: 25px;
  margin-bottom: 14px;
}

.recipe .recipe-title {
  line-height: 147.5%;
  transition: color .2s;
}

.home .my-recipes .recipe .recipe-title.no-category {
  margin-top: 27px;
}

.recipe-link:hover > .recipe > .recipe-title {
  color: var(--magenta)
}

.my-recipes .view-more, .latest-recipes .view-more {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.latest-recipes .view-more {
  margin-top: -17px;
}

.my-recipes .read-more-link, .latest-recipes .read-more-link {
  display: inline-flex;
}

@media only screen and (max-width: 850px) {
  .recipe-link {
    margin: 0 17px;
    margin-bottom: 70px;
  }

  .featured-recipe {
    margin-bottom: 80px;
  }

  .latest-recipes .view-more {
    margin-top: -10px;
  }
}

@media only screen and (max-width: 808px) {
  .latest-recipes .view-more {
    margin-top: 0;
  }
}

@media only screen and (max-width: 450px) {
  .recipe-link, .latest-recipes .recipe-link {
    min-width: 200px;
    width: 200px;
  }

  .recipe .recipe-image, .latest-recipes .recipe .recipe-image {
    min-height: 65vw;
    min-height: min(305px, 65vw);
    max-height: 65vw;
    max-height: min(305px, 65vw);
  }

  .recipe-link .overlay, .latest-recipes .recipe-link .overlay{
    min-height: 65vw;
    min-height: min(305px, 65vw);
    max-height: 65vw;
    max-height: min(305px, 65vw);
  }

  .recipe .recipe-category-title, .recipe .recipe-title {
    max-width: 87%;
  }

  .my-recipes .view-more, .latest-recipes .view-more {
    margin-top: 0;
  }
}


/* browse by category section */

.recipe-categories {
  padding-top: 85px;
  padding-bottom: 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--green-grey-background);
}

.recipe-categories ul {
  list-style-type: none;
}

.recipe-categories .heading-with-line {
  margin-bottom: 50px;
  margin-left: 28px;
  margin-right: 28px;
}

.recipe-categories .heading-with-line .title {
  font-size: 25px;
}

.recipe-categories .content {
  width: 100%;
  max-width: 1449px;
  padding-left: 30px;
  padding-right: 30px;
}

.recipe-categories .category-image {
  background-color: var(--magenta);
  min-height: 221px;
  max-height: 221px;
  min-width: 100%;
  max-width: 100%;
}

.recipe-categories .categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.categories-list li {
  margin: 0 7px;
  margin-bottom: 70px;
  flex-grow: 1;
  min-width: 128px;
  width: 128px;
  max-width: 175px;
}

.categories-list .category-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.recipe-categories .category-title {
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
  line-height: 147.5%;
  transition: color .3s;
}

.category-link .overlay {
  position: absolute;
  min-height: 221px;
  max-height: 221px;
  min-width: 100%;
  max-width: 100%;
  background-color: rgba(24, 24, 24, 0.20);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-link:hover > .overlay {
  opacity: 1;
}

.category-link:hover > .category-title {
  color: var(--magenta)
}

@media only screen and (max-width: 1265px) {
  .recipe-categories .category-image {
    min-height: 200px;
    max-height: 200px;
  }

  .category-link .overlay {
    min-height: 200px;
    max-height: 200px;
  }
}

/* new row */
@media only screen and (max-width: 1375px) {
  .categories-list li {
    margin-bottom: 60px;
  }

  .recipe-categories {
    padding-bottom: 35px;
  }
  
  .recipe-categories .category-image {
    min-height: 210px;
    max-height: 210px;
  }

  .category-link .overlay {
    min-height: 210px;
    max-height: 210px;
  }

  .recipe-categories .categories-list {
    max-width: 1000px;
    margin: 0 auto;
  }

  .recipe-categories .heading-with-line {
    margin-left: 8%;
  }

  .recipe-categories .heading-with-line {
    margin-bottom: 55px;
  }
}

@media only screen and (max-width: 800px) {
  .recipe-categories .categories-list {
    max-width: 424px;
    margin: 0 auto;
    justify-content: space-evenly;
  }

  .categories-list li {
    margin-bottom: 50px;
  }

  .recipe-categories {
    padding-bottom: 45px;
  }

  .recipe-categories .heading-with-line {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 510px) {
  .recipe-categories .heading-with-line {
    margin-left: 10%;
    margin-bottom: 55px;
  }

  .recipe-categories .content {
    padding-right: 9px;
    padding-left: 9px;
  }
}

@media only screen and (max-width: 440px) {
  .recipe-categories .categories-list {
    justify-content: center;
  }
}

@media only screen and (max-width: 410px) {
  .categories-list li {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 374px) {
  .recipe-categories .category-image {
    min-height: 55vw;
    max-height: 55vw;
  }

  .category-link .overlay {
    min-height: 55vw;
    max-height: 55vw;
  }
}

@media only screen and (max-width: 340px) {
  .categories-list li {
    max-width: 240px;
    margin-bottom: 46px;
  }

  .recipe-categories {
    padding-bottom: 49px;
  }

  .recipe-categories .category-image {
    min-height: 165px;
    max-height: 165px;
  }

  .category-link .overlay {
    min-height: 47vw;
    max-height: 47vw;
  }
}



/* =====================
  404 Page (Page Not Found - pnf)
======================== */

.pnf section.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--green-grey-background);
  padding: 22vh 40px;
  padding: max(22vh, 100px) 40px;
}

.pnf section.content h1, .pnf section.content h2, .pnf section.content p {
  text-align: center;
}

.pnf section.content h1 {
  font-size: 60px;
}

.pnf section.content .heading-with-line {
  align-items: center;
  margin-top: 3px;
  margin-bottom: 12px;
}

.pnf section.content .heading-with-line .line {
  display: none;
}

.pnf section.content .read-more-link {
  align-self: center;
  margin-top: 55px;
}

@media only screen and (max-width: 510px) {
  .pnf section.content {
    padding: 20vh 25px;
    padding: max(20vh, 100px) 25px;
  }
}

@media only screen and (max-width: 345px) {
  .pnf section.content {
    padding: 75px 25px;
    padding: max(14vh, 75px) 25px;
  }
}



/* =====================
  About page
======================== */

.about .page-title {
  display: block;
  margin: 0 auto;
  margin-top: 68px;
  margin-bottom: 35px;
  padding: 20px 50px;
  text-align: center;
}

.about .full-width-cover-image {
  width: 100%;
  min-height: 550px;
  min-height: min(max(270px, 45vw), 594px);
  min-height: clamp(270px, 45vw, 594px); 
  margin-bottom: 10px;
}

@media only screen and (max-width: 1140px) {
  .about .page-title {
    margin-top: 47px;
    margin-bottom: 25px;
  }
  .about .full-width-cover-image {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 750px) {
  .about .page-title {
    margin-top: 45px;
    margin-bottom: 13px;
  }
}



/* =====================
  Post-Level Content (plc)
======================== */

.plc {
  margin: 0 auto;
  max-width: 851px;
  padding: 46px 7vw;
  padding: 46px min(max(24px, 100px), 7vw);
  padding: 46px clamp(24px, 100px, 7vw);
  padding-bottom: 106px;
  box-sizing: content-box;
}

.plc p, .plc pre, .plc blockquote, .plc ol, .plc ul, .plc h1, .plc h2, .plc h3, .plc h4, .plc h5, .plc h6 {
  max-width: 576px;
  margin: 0 auto;
  overflow-wrap: anywhere
}

.plc h1, .plc h2, .plc h3, .plc h4, .plc h5, .plc h6 {
  margin-top: 18px;
  line-height: 134%;
}

.plc p {
  font-size: 18px;
}

.plc p.contains-image {
  font-size: 18px;
  max-width: 840px;
}

.plc img {
  margin: 0 auto;
  max-width: 100%;
  /*-webkit-transform: translateX(-15.7%);
  -moz-transform: translateX(-15.7%);
  -o-transform: translateX(-15.7%);
  transform: translateX(-15.7%);*/
  max-height: 800px;
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: var(--grey-d);
}

.post .plc img {
  max-height: 720px;
}

.post .plc p.contains-image {
  max-width: 730px;
}

.post .plc > p:last-child img:last-child {
  margin-bottom: 15px;
}

.post .plc.no-tip-or-defined > p:last-child img:last-child {
  margin-bottom: 0;
}

/*
.plc img.no-transform {
  max-width: 100%;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
}*/

.plc a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  border-bottom: 2px solid var(--magenta-50);
  transition: border .2s;
  color: var(--magenta);
}

.plc a:hover {
  border-color: var(--magenta);
}

.plc hr {
  width: 131px;
  margin: 62px auto;
  border: none;
  height: 1px;
  background-color: #c4c1b5;
}

.plc hr.image-after {
  margin-top: 72px;
}

.plc hr.image-before {
  margin-bottom: 72px;
}

.plc hr.no-content-after, .plc hr.no-content-before {
  display: none;
}

.plc pre {
  border: 2px solid var(--grey-c);
  background-color: var(--grey-f);
  border-radius: 5px;
  padding: 20px 30px;
  font-size: 15px;
}

.plc pre code {
  font-family: "Menlo", "Fira Code", monospace;
}

.plc blockquote {
  background-color: var(--grey-f);
  border-left: 3px solid var(--magenta);
  padding: 14px 38px;
}

.plc strong {
  font-weight: 600;
}

/* override strong and em tags for headers */
.plc h1 strong, .plc h2 strong, .plc h3 strong, .plc h4 strong, .plc h5 strong{
  font-weight: 400;
}
.plc h1 em, .plc h2 em, .plc h3 em, .plc h4 em, .plc h5 em, .plc h6 em {
  font-style: normal;
}

.plc h1 {
  font-size: 40px!important;
}

.plc h2 {
  font-size: 35px;
  font-weight: 400!important;
}

.plc h3 {
  font-size: 30px;
}

.plc h4 {
  font-size: 26px;
}

.plc h5 {
  font-size: 23px;
}

.plc h6 {
  font-size: 18px;
  font-weight: 600;
}

.plc ol, .plc ul {
  padding-left: 56px;
  padding-left: max(56px, 8%);
}

.plc ol li, .plc ul li {
  font-weight: 400;
  font-family: var(--serif);
  font-size: 18px;
}


@media only screen and (max-width: 1130px) {
  .plc img {
    /*max-width: 126%;
    -webkit-transform: translateX(-10.5%);
    -moz-transform: translateX(-10.5%);
    -o-transform: translateX(-10.5%);
    transform: translateX(-10.5%);*/
    max-height: 720px;
  } 
  
  .post .plc img {
    max-height: 680px;
  }

  .plc p.contains-image {
    max-width: 725px;
  }

  .post .plc p.contains-image {
    max-width: 650px;
  }
}

@media only screen and (max-width: 870px) {
  .plc img {
    /*max-width: 116%;
    -webkit-transform: translateX(-6.9%);
    -moz-transform: translateX(-6.9%);
    -o-transform: translateX(-6.9%);
    transform: translateX(-6.9%);*/
    max-height: 650px;
  }  

  .post .plc img {
    max-height: 620px;
  }

  .plc p.contains-image {
    max-width: 668px;
  }

  .post .plc p.contains-image {
    max-width: 576px;
  }
}

@media only screen and (max-width: 750px) {
  .plc img {
    /*max-width: 100%;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;*/
    max-height: 620px;
    margin-top: 43px;
    margin-bottom: 43px;
  }  

  .plc p.contains-image {
    max-width: 576px;
  }

  .plc {
    padding-bottom: 88px;
  }

  .post .plc > p:last-child img:last-child {
    margin-bottom: 0;
  }
}



/* =====================
  Search page
======================== */

.search .overlap-background {
  height: 600px;
}

.search main {
  padding-top: 75px;
  min-height: 80vh;
}

.search main.no-results {
  min-height: 92vh;
}

.search main .search-form {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 32px;
  align-content: center;
}

.search main .search-form label,  .search main .search-form .input{
  align-self: center;
}

.search main .search-form label {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 160.5%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.search main .search-form input {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  border-bottom: 2px solid var(--black);
  padding: 13px 16px;
  padding-left: 62px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  background-color: transparent;
  width: 400px;
  color: var(--black);
}

.search main .search-form input:focus {
  outline: none;
}

.search main .search-form input::placeholder {
  color: var(--grey-b);
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 400;
}

.search main .search-form input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.search main .search-form input::-webkit-search-cancel-button{
  -webkit-appearance: none;
}

.search main .search-form .submit-button {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  margin-left: 13px;
}

.search main .search-form .submit-button button {
  pointer-events: all;
  padding: 6px 8px;
  margin: 9px 0px;
  display: flex;
  align-items: center;
}

.search main .search-form .search-button-icon {
  fill: var(--grey-b);
  transition: fill .2s;
}

.search main .search-form button:hover > .search-button-icon {
  fill: var(--black);
}

.search .results-count {
  max-width: 1234px;
  padding: 0 60px;
  padding-top: 85px;
  margin: 0 auto;
}

.search .results-count.less-than-three-results {
  max-width: 990px;
}

.search main .search-form .search-button-icon.small {
  display: none;
}

@media only screen and (max-width: 1121px) {
  .search .results-count {
    max-width: 956px;
    padding: 0 75px;
    padding-top: 85px;
  }
}

.search .results-count h1 {
  font-size: 20px;
  line-height: 167.5%;
}

.search .results-count.no-results {
  margin: 0 auto;
}

.search .results-count.no-results > h1{
  font-size: 22px;
  text-align: center;
}

.search .results-count .no-results-suggested-text {
  display: none;
  font-size: 15px;
  text-align: center;
  color: var(--green-grey-text-darker);
  margin-top: 14px;
  font-family: var(--sans-serif);
}

.search .results-count.no-results .no-results-suggested-text {
  display: block;
}

@media only screen and (max-width: 750px) {
  .search main {
    padding-top: 95px;
  }

  .search main .search-form input {
    width: 350px;
  }

  .search .results-count > h1{
    font-size: 20px;
    text-align: center;
  }

  .search .overlap-background {
    height: 505px;
  }

  .search main .search-form {
    margin-bottom: 25px;
  }

  .search .results-count {
    padding: 0 10vw;
    padding-top: 85px;
  }
}

@media only screen and (max-width: 650px) {
  .search main {
    padding-top: 60px;
  }

  .search main .search-form {
    margin-bottom: 14px;
  }

  .search .overlap-background {
    height: 408px;
  }

  .search main .search-form .input {
    max-width: 320px;
    width: 75vw;
    min-width: 265px;
  }

  .search main .search-form input {
    width: 100%;
    font-size: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 50px;
  }

  .search main .search-form input::placeholder {
    font-size: 18px;
  }

  .search main .search-form .search-button-icon.small {
    display: inline-block;
  }

  .search main .search-form .search-button-icon.large {
    display: none;
  }

  .search main .search-form .submit-button {
    margin-left: 8px;
  }

  .search main .search-form .submit-button button {
    margin: 8px 0;
  }

  .search .results-count {
    padding: 0 10vw;
    padding-top: 60px;
  }
}



/* =====================
  Small recipes list (SRL)
======================== */

.srl {
  padding-top: 85px;
  padding-bottom: 92px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* remove some padding for the search page */
.search .srl {
  padding-top: 38px;
}

@media only screen and (max-width: 650px) {
  .search .srl {
    padding-top: 32px;
  }
}

.srl .content {
  width: 100%;
  max-width: 1241px;
  padding-left: 30px;
  padding-right: 30px;
}

@media only screen and (max-width: 1150px) {
  .srl .content {
    max-width: 1241px;
    padding-left: 20px;
    padding-right: 20px;
  } 
}

@media only screen and (max-width: 510px) {
  .srl .content {
    padding-right: 0;
    padding-left: 0;
  }
}

.srl .recipes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.srl .recipe-link {
  margin: 0 19px;
  margin: 0 max(min(1.8vw, 21px), 19px);
  margin-bottom: 80px;
  flex-grow: 1;
  min-width: 320px;
  width: 320px;
  max-width: 350px;
}

@media only screen and (max-width: 850px) {
  .srl .recipe-link {
    margin: 0 17px;
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 450px) {
  .srl .recipe-link {
    min-width: 200px;
    width: 200px;
  }  
}

.srl .recipe {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.srl .recipe .recipe-image {
  min-height: 262px;
  max-height: 262px;
  min-width: 100%;
  max-width: 100%;
  background-color: var(--grey-c);
  position: relative;
}

.srl .recipe-image img {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  object-fit: cover;
  color: var(--grey-c)
}

@media only screen and (max-width: 450px) {
  .srl .recipe .recipe-image {
    min-height: 65vw;
    min-height: min(262px, 65vw);
    max-height: 65vw;
    max-height: min(262px, 65vw);
  }
}

.srl .recipe .overlay {
  position: absolute;
  min-height: 262px;
  max-height: 262px;
  min-width: 100%;
  max-width: 100%;
  background-color: rgba(24, 24, 24, 0.20);
  opacity: 0;
  transition: opacity 0.2s;
}

@media only screen and (max-width: 450px) {
  .srl .recipe .overlay {
    min-height: 65vw;
    min-height: min(262px, 65vw);
    max-height: 65vw;
    max-height: min(262px, 65vw);
  }
} 

.srl .recipe .recipe-category-title, .latest-recipes .recipe .recipe-category-title {
  margin-top: 21px;
  margin-bottom: 12px;
}

.srl .recipe .recipe-category-title, .srl .recipe .recipe-title, .latest-recipes .recipe .recipe-title {
  max-width: 82%;
  text-align: center;
}

.srl .recipe .recipe-title, .latest-recipes .recipe .recipe-title {
  line-height: 147.5%;
  transition: color .2s;
  font-size: 21px;
}

.srl .recipe .recipe-title.no-category, .latest-recipes .recipe .recipe-title.no-category {
  margin-top: 32px;
}

.plp  .recipe .recipe-title.no-category {
  margin-top: 27px;
}

@media only screen and (max-width: 450px) {
  .srl .recipe .recipe-category-title, .srl .recipe .recipe-title, .latest-recipes .recipe .recipe-title, .latest-recipes .recipe .recipe-category-title {
    max-width: 87%;
  }
}

@media only screen and (max-width: 350px) {
  .srl .recipe .recipe-title, .latest-recipes .recipe .recipe-title {
    line-height: 147.5%;
    transition: color .2s;
    font-size: 20px;
  }
}



/* =====================
  Post list pages (PLP) - recipes, garden and categories pages
======================== */

.plp .overlap-background {
  height: 295px;
}

.plp main {
  padding-top: 20px;
}

.plp .page-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green-grey-background);
  padding: 52px 50px;
}

.plp.garden .page-title,
.plp.recipes .page-title {
  flex-direction: column;
}

.plp.garden .page-title h2,
.plp.recipes .page-title h2 {
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
  line-height: 149.5%;
}

.plp .recipe-link.hidden {
  display: none;
}

@media only screen and (max-width: 750px) {
  .plp .overlap-background {
    height: 200px;
  }
}

@media only screen and (max-width: 650px) {
  .plp .overlap-background {
    height: 0px;
  }

  .plp main {
    padding-top: 0px;
  }

  .plp .page-title {
    padding: 58px 40px;
  }

  .plp.category .page-title {
    padding: 48px 40px;
  }

  .plp .page-title h1 {
    text-align: center;
  }

  .plp.category .page-title h1 {
    font-size: 36px;
    line-height: 130%;
  }
}

/* =====================
  Post list with categories (PLWC)
======================== */

.plwc {
  display: flex;
  justify-content: center;
}

.plwc .categories {
  display: flex;
  flex-direction: column;
  background-color: var(--green-grey-background);
  align-self: flex-start;
  padding: 62px 65px;
  min-width: 317px;
  margin-top: 61px;
  margin-left: 50px;
  position: sticky;
  top: 40px;
  transition: transform .4s;
}

.plp.category .plwc .categories {
  min-width: 323px;
}

.main-header.quick-access:not(.collapse) ~ main aside.categories {
  transform: translateY(70px);
}

.plwc .left-col {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  max-width: 375px;
  padding-bottom: 92px;
}

.plwc .categories .heading-with-line h2 {
  font-size: 25px;
}

.plwc .categories .plus-icon {
  display: none;
}

.plwc .categories ul {
  margin-top: 27px;
}

.plwc .categories li {
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  display: flex;
}

.plwc .categories li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin-top: -0px;
  background: var(--magenta);
  transition: width 0.25s;
}

/* adds underline hover effect */
@media only screen and (hover: hover) and (pointer: fine) {
  .plwc .categories li a:hover::after {
    width: 100%;
  }
}

.plwc .show-more {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  margin-top: 13px;
}

.plwc .show-more button {
  padding: 20px 36px;
  display: flex;
  align-items: center;
  background-color: var(--magenta);
  font-size: 15px;
  font-family: var(--sans-serif);
  font-weight: 500;
  color: var(--white);
  transition: background-color .2s;
}

.plwc .show-more button:hover {
  background-color: var(--magenta-90);
}

.plwc .srl {
  padding-top: 61px;
  width: unset;
}

.plwc .categories button {
  display: none;
}

@media only screen and (max-width: 1525px) {
  .plwc .categories {
    padding: 60px 57px;
    min-width: 296px;
    margin-top: 56px;
    margin-left: 42px;
  }

  .plp.category .plwc .categories {
    padding: 62px 59px;
    min-width: 310px;
  }

  .plwc .srl {
    padding-top: 56px;
  }

  .plwc .srl .content {
    padding-left: 25px;
    padding-right: 14px;
  }
}

@media only screen and (max-width: 1450px) {
  body:not(.plp.category) .plwc .categories {
    padding: 51px 53px;
    min-width: 281px;
  }
}

/* mobile */
@media only screen and (max-width: 1320px) {
  .main-header.quick-access:not(.collapse) ~ main aside.categories {
    transform: none;
  }
  
  .plwc .srl .content {
    max-width: 1270px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .plwc {
    flex-direction: column;
  }

  .plwc .left-col {
    padding-bottom: 0;
    max-width: 1271px;
    width: 100%;
    margin: 0 auto;
  }

  .plp.category .plwc .left-col {
    max-width: 1257px;
  }

  .plwc .categories button {
    background-color: var(--magenta);
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    height: 63px;
    transition: background-color .2s;
    pointer-events: all;
    display: inline-block;
  }

  .plwc .categories button:active {
    background-color: var(--magenta-90);
  }

  .plwc .categories {
    padding: 21px 36px;
    position: relative;
    background-color: var(--grey-f);
    top: 0;
    margin-left: 58px;
    margin-top: 38px;
    min-width: 280px;
    height: 500px;
    max-height: 63px;
    transition: max-height .3s;
    pointer-events: none;
  }

  body:not(.plp.category) .plwc .categories {
    padding: 21px 36px;
    min-width: 280px;
  }

  .plp.category .plwc .categories {
    padding: 21px 36px;
    min-width: 325px;
    margin-left: 51px;
    margin-left: calc(30px + max(min(1.8vw, 21px), 19px));
  }

  .plwc .categories.open {
    max-height: 480px;
    pointer-events: all;
  }

  .plp.category .plwc .categories.open {
    max-height: 446px;
  }

  .plwc .categories .heading-with-line .line {
    display: none;
  }

  .plwc .categories .heading-with-line .title {
    margin: 0;
    color: var(--white);
    font-family: var(--sans-serif);
    font-size: 17px;
    font-weight: 500;
    align-self: flex-start;
    z-index: 1;
    pointer-events: none;
  }

  .plwc .categories .plus-icon {
    display: inline-block;
    position: absolute;
    right: 46px;
    top: 23px;
    z-index: 1;
    transition: transform .2s;
    transform-origin: 0px 8px;
    pointer-events: none;
  }

  .plwc .categories .plus-icon .line {
    background-color: var(--white);
    width: 2px;
    height: 16px;
    position: absolute;
    transition: opacity .2s;
  }

  .plwc .categories .plus-icon .line.line2 {
    transform: rotate(90deg);
  }

  .plwc .categories.open .plus-icon {
    transform: rotate(90deg);
  }

  .plwc .categories.open .plus-icon .line.line2 {
    opacity: 0;
  }

  .plwc .categories ul {
    opacity: 0;
    pointer-events: none;
    position: relative;
    transition: opacity .25s;
    margin-top: 50px;
  }

  .plwc .categories ul.open {
    opacity: 1;
    pointer-events: all;
    position: relative;
  }
}

@media only screen and (max-width: 1320px) and (hover: hover) and (pointer: fine) {
  .plwc .categories button:hover {
    background-color: var(--magenta-90);
  }
}

@media only screen and (max-width: 1150px) {
  .plwc .srl .content {
    max-width: 1429px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .plwc .categories {
    margin-left: 48px;
  }

  body:not(.plp.category) .plwc .categories {
    margin-left: 48px;
  }

  .plp.category .plwc .categories {
    margin-left: 41px;
  }
}

@media only screen and (max-width: 1121px) {
  .plp.category .plwc .categories {
    margin-left: -47vw;
  }

  .plp.category .plwc .left-col {
    justify-content: center;
  }
}

@media only screen and (max-width: 750px) {
  .plwc .categories {
    width: 100%;
    margin-right: 48px;
  }

  body:not(.plp.category) .plwc .categories {
    width: 100%;
    margin-right: 48px;
  }

  .plp.category .plwc .categories {
    margin-left: 48px;
  }

  .plp.category .plwc .left-col {
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 650px) {
  .plwc .categories {
    margin-left: 40px;
    margin-right: 40px;
    min-width: unset;
  }

  body:not(.plp.category) .plwc .categories {
    margin-left: 40px;
    margin-right: 40px;
    min-width: unset;
  }

  .plp.category .plwc .categories {
    margin-left: 40px;
    margin-right: 40px;
    min-width: unset;
  }
}

@media only screen and (max-width: 510px) {
  .plwc .srl .content {
    padding-right: 0;
    padding-left: 0;
  }

  .plwc .srl {
    padding-top: 38px;
  }

  .plp.garden .plwc .srl {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 360px) {
  .plp.category .plwc .categories {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 340px) {
  .plwc .categories {
    margin-left: 30px;
    margin-right: 30px;
  }

  body:not(.plp.category) .plwc .categories {
    margin-left: 30px;
    margin-right: 30px;
  }

  .plp.category .plwc .categories {
    margin-left: 17px;
    margin-right: 17px;
  }
}

@media only screen and (max-width: 310px) {
  .plwc .categories {
    margin-left: 25px;
    margin-right: 25px;
  }

  body:not(.plp.category) .plwc .categories {
    margin-left: 25px;
    margin-right: 25px;
  }

  .plp.category .plwc .categories {
    margin-left: 17px;
    margin-right: 17px;
  }
}


/* featured recipe */

.plwc .featured-recipe .left {
  flex-shrink: 2;
}

.plwc .featured-recipe .main-text-content {
  display: flex;
  flex-direction: column;
  padding-top: 92px;
  padding-bottom: 68px;
  margin: auto 0;
  max-width: 80%;
  max-width: min(80%, 462px); /* 68% */
}

.plwc .featured-recipe .read-more-link {
  align-self: flex-end;
  margin-top: 46px;
  display: inline-flex;
}

@media only screen and (max-width: 1600px) {
  .plwc .featured-recipe .main-text-content {
    padding-top: 100px;
    padding-bottom: 71px;
  }

  .plwc .featured-recipe .read-more-link {
    margin-top: 40px;
  }

  .plwc .featured-recipe .right {
    min-width: 300px;
  }
}

@media only screen and (max-width: 1450px) {
  .plwc .featured-recipe .left {
    flex-shrink: 2.7;
  }

  .plwc .featured-recipe .right {
    padding-left: 7.5%;
  }

  .plwc .featured-recipe .main-text-content {
    padding-top: 90px;
    padding-bottom: 64px;
    max-width: 83.5%;
  }

  .plwc .featured-recipe .read-more-link {
    margin-top: 34px;
  }

  .plwc .featured-recipe .banner {
    margin-top: 30px;
  }
}

/* reset to full width */
@media only screen and (max-width: 1320px) {
  .plwc .featured-recipe .main-text-content {
    padding-top: 92px;
    padding-bottom: 68px;
    max-width: 80%;
    max-width: min(80%, 462px);
  }

  .plwc .featured-recipe .read-more-link {
    margin-top: 44px;
  }

  .plwc .featured-recipe .left {
    flex-shrink: 1;
    flex-basis: 539px;
  }

  .plwc .featured-recipe .banner {
    margin-top: 37px;
  }

  .plwc .featured-recipe .main-text-content {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 75px;
    margin: auto 0;
    max-width: 80%;
    max-width: min(80%, 462px);
  }

  .plwc .featured-recipe .right {
    min-width: 300px;
    padding-left: 8%;
    padding-left: min(max(80px, 8%), 105px);
    padding-left: clamp(80px, 8%, 105px);
  }
}

@media only screen and (max-width: 1200px) {
  .plwc .featured-recipe .left {
    flex-shrink: 1;
    flex-basis: 520px;
  }
}

@media only screen and (max-width: 1140px) {
  .plwc .featured-recipe .left {
    flex-shrink: 1;
    flex-basis: 480px;
  }
}

/* mobile view */
@media only screen and (max-width: 1022px) {
  .plwc .featured-recipe {
    flex-direction: column;
  }

  .plwc .featured-recipe .left {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    height: 500px;
    height: min(500px, 65vw);
    flex-basis: unset;
  }

  .plwc .featured-recipe .right {
    flex-shrink: 0;
    padding-left: 0;
  }

  .plwc .featured-recipe .main-text-content {
    margin: 0 0;
    padding-top: 50px;
    padding-left: 11.5%;
    padding-left: min(max(80px, 11.5%), 105px);
    padding-left: clamp(80px, 11.5%, 105px);
    max-width: 65%;
  }

  .plwc .featured-recipe .read-more-link {
    /*position: absolute;
    bottom: 0;
    margin-bottom: 75px;
    margin-right: -80px;*/
    margin-top: 38px;
  }
}

@media only screen and (max-width: 780px) {
  .plwc .featured-recipe .left {
    height: 65vw;
    height: min(500px, 65vw);
  }
}

@media only screen and (max-width: 725px) {
  .plwc .featured-recipe .main-text-content {
    padding-left: 12.2%;
    padding-left: min(max(80px, 11.5%), 105px);
    padding-left: clamp(80px, 11.5%, 105px);
  }
}

@media only screen and (max-width: 910px) {
  .plwc .featured-recipe .main-text-content {
    padding-top: 75px;
  }

  .plwc .featured-recipe .banner {
    margin-top: 28px;
  }

  .plwc .featured-recipe .main-text-content {
    max-width: 100%;
    padding-right: 11.5%;
    padding-right: min(max(80px, 11.5%), 105px);
    padding-right: clamp(80px, 11.5%, 105px);
  }

  .plwc .featured-recipe .right {
    min-width: unset;
  }
}

@media only screen and (max-width: 650px) {
  .plwc .featured-recipe .main-text-content {
    max-width: 100%;
    padding-right: 13%;
    padding-left: 13%;
  }

  .plwc .featured-recipe {
    margin-left: 20px;
    margin-right: 20px;
  }

  .plwc .featured-recipe .main-text-content {
    padding-top: 82px;
    padding-bottom: 62px;
  }
}

@media only screen and (max-width: 510px) {
  .plwc .featured-recipe {
    margin-left: 0px;
    margin-right: 0px;
  }

  .plwc .featured-recipe .banner {
    padding-right: 40px;
  }
}

@media only screen and (max-width: 380px) {
  .plwc .featured-recipe .main-text-content {
    padding-right: 11%;
    padding-left: 11%;
  }
}

@media only screen and (max-width: 350px) {
  .plwc .featured-recipe .banner {
    padding-right: 27px;
  }
}



/* =====================
  Post
======================== */

.post .overlap-background {
  height: 788px;
}

.post main.no-category + .overlap-background {
  height: calc(788px - 48px);
}

.post main.no-summary + .overlap-background {
  height: calc(788px - 75px);
}

.post main.no-summary.no-category + .overlap-background {
  height: calc(788px - 75px - 48px);
}

.post .post-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 52px 50px;
  padding-top: min(max(52px, 9vh), 85px);
  text-align: center;
}

.post .post-title h1 {
  max-width: 800px;
}

.post .post-title h1.no-category {
  margin-top: 35px;
}

.post .post-title .recipe-category-title {
  margin-bottom: 28px;
}

.post .post-title .summary {
  margin-top: 23px;
  max-width: 500px;
}

.post main .stan-background-image {
  min-height: 544px;
  max-height: 544px;
  min-width: 730px;
  max-width: 730px;
  margin: 0 auto;
  margin-top: 30px;
}

.post .plc {
  margin-top: 14px;
  padding-bottom: 96px;
}

.post .plc.no-tip-or-defined {
  padding-bottom: 0;
}

.post .defined {
  display: flex;
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 142px;
  justify-content: space-around;
}

.post .defined.no-defined-present {
  justify-content: center;
  margin-bottom: 0;
}

.post .defined hr {
  /* add position: relative to .post .defined if using <hr>*/
  position: absolute;
  top: -40px;
  width: 131px;
  border: none;
  height: 1px;
  background-color: #c4c1b5;
  transform: translateX(50%);
  right: 50%;
}

.post .defined .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post .defined .ingredients {
  padding: 85px;
  min-width: 422px;
  width: 100%;
  max-width: 481px;
  background-color: var(--green-grey-background);
}

.post .defined .ingredients .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
}

.post .defined .ingredients.long-serves-text .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 2;
}

.post .defined .ingredients.long-serves-text .serves {
  margin-top: 20px;
}

.post .defined .ingredients.long-serves-text .ingredients-list :first-child.sub-title {
  margin-top: 20px;
}

.post .defined h2 {
  font-size: 30px;
}

.post .defined .ingredients .serves {
  font-size: 18px;
  margin-top: -7px;
  overflow-wrap: anywhere;
}

.post .defined .ingredients-list {
  list-style-type: none;
}

.post .defined .ingredients-list li {
  margin: 17px 0;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans-serif);
  overflow-wrap: anywhere;
}

.post .defined .ingredients-list li a {
  color: var(--magenta);
  border-bottom: 2px solid var(--magenta-50);
  transition: border .2s;
}

.post .defined .ingredients-list li a:hover {
  border-color: var(--magenta);
}

.post .defined .ingredients-list li.sub-title {
  margin-top: 37px;
  margin-bottom: 10px;
  font-style: italic;
  font-family: var(--serif);
  font-size: 18px;
}

.post .defined .ingredients-list li.sub-title + li {
  margin-top: 13px;
}

.post .defined .ingredients-list :last-child {
  margin-bottom: 0;
}

.post .defined .method {
  max-width: 576px;
  margin: 0 47px;
  margin-top: 85px;
}

.post .defined .method .heading-with-line {
  margin-bottom: 28px;
}

.post .defined .method p {
  font-size: 18px;
  overflow-wrap: anywhere;
}

.post .defined .method p a,
.post .defined .tip p a {
  color: var(--magenta);
  border-bottom: 2px solid var(--magenta-50);
  transition: border .2s;
  font-size: inherit;
  font-family: inherit;
}

.post .defined .method p a:hover,
.post .defined .tip p a:hover {
  border-color: var(--magenta);
}


.post .defined .tip {
  max-width: 668px;
  min-width: 376px;
  background-color: var(--grey-f);
  padding: 47px;
  position: relative;
  margin-top: 110px;
}

.post .defined.no-defined-present .tip {
  margin-top: 0;
}

.post .defined .tip .title {
  text-transform: uppercase;
  padding: 15px 29px;
  background-color: var(--magenta);
  position: absolute;
  transform: translateY(-72px);
}

.post .defined .tip .title h3 {
  font-weight: 500;
  font-family: var(--sans-serif);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.8px;
}

.post .defined .tip p {
  font-weight: 500;
  font-family: var(--sans-serif);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.post .actions {
  margin-top: 25px;
  display: flex;
}

.post .actions button,.post .actions a {
  padding: 5px 8px;
  display: flex;
  align-items: center;
  margin-left: 22px;
  transition: opacity .2s, transform .2s;
}

.post .actions .icon {
  max-width: 21px;
}

.post .actions .icon, .post .actions .text {
  stroke: var(--magenta);
  color: var(--magenta);
  transition: color .2s, stroke .2s;
}

.post .actions button:hover .icon, .post .actions button:hover .text, .post .actions a:hover .icon, .post .actions a:hover .text {
  stroke: var(--green-grey-text);
  color: var(--green-grey-text);
}

.post .actions .text {
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 14px;
  margin-left: 9px;
}

.post .actions .share-button .text {
  margin-left: 8px;
}

.post .actions .share-links {
  display: flex;
  align-items: center;
  position: absolute;
  margin-left: 100px;
  pointer-events: none;
}

.post .actions .share-button.hidden {
  opacity: 0;
  pointer-events: none;
}

.post .actions .share-links button, .post .actions .share-links a {
  margin-left: 17px;
  pointer-events: all;
}

.post .actions .share-links button.hidden, .post .actions .share-links a.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.post .actions.end-of-post {
  max-width: 576px;
  margin: 0 auto;
  max-width: 576px;
  padding: 50px 7vw;
  padding: 50px min(max(24px, 100px), 7vw);
  padding: 50px clamp(24px, 100px, 7vw);
  padding-bottom: 0;
  box-sizing: content-box;
  margin-bottom: 142px;
  display: none;
}

.post .defined.no-defined-present + .actions.end-of-post {
  display: flex;
}

.post .actions.end-of-post .print-button {
  margin-left: 0;
}

.post .actions.end-of-post.no-print-option .share-button {
  margin-left: 0;
}

.post .actions.end-of-post.no-print-option .share-links {
  margin-left: 0;
  margin-top: 0;
}

.post .actions.end-of-post .share-links :first-child {
  margin-left: 0;
}

@media only screen and (max-width: 1400px) {
  .post .defined {
    padding: 0 50px;
  }

  .post .defined .right {
    margin-left: 42px;
  }

  .post .defined .left {
    margin-right: 42px;
  }

  .post .defined .tip {
    max-width: 576px;
    margin-left: 47px;
    margin-right: 47px;
    margin-top: 100px;
  }

  .post .actions:not(.end-of-post) .share-links {
    margin-left: 0;
    margin-top: 47px;
  }
}

@media only screen and (max-width: 1280px) {
  .post .defined .ingredients {
    padding: 78px;
  }

  .post .defined .method {
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 78px;
  }

  .post .defined .tip {
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media only screen and (max-width: 1120px) {
  .post .defined {
    padding: 0 40px;
  }

  .post .defined .right {
    margin-left: 32px;
  }

  .post .defined .left {
    margin-right: 32px;
  }

  .post .defined .ingredients {
    padding: 72px;
  }

  .post .defined .method {
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 72px;
  }

  .post .defined .tip {
    margin-left: 24px;
    margin-right: 24px;
  }

  .post .plc {
    padding-bottom: 95px;
  }
}

/* mobile - defined */
@media only screen and (max-width: 1022px) {
  .post .defined {
    flex-direction: column;
    margin-bottom: 0;
    max-width: 576px;
    padding: 0 7vw;
    padding: 0 min(max(24px, 100px), 7vw);
    padding: 0 clamp(24px, 100px, 7vw);
    box-sizing: content-box;
  }

  .post .defined .ingredients {
    margin: 0 auto;
    min-width: 100%;
  }

  .post .left .actions {
    display: none;
  }

  .post .actions.end-of-post {
    display: flex;
  }

  .post .defined .right {
    margin-left: 0;
  }

  .post .defined .left {
    margin-right: 0;
  }

  .post .defined .tip {
    margin-top: 93px;
  }

  .post .defined .method, .post .defined .tip {
    margin-left: 0;
    margin-right: 0;
  }

  .post .plc {
    padding-bottom: 92px;
  }
}

@media only screen and (max-width: 980px) {
  .post .post-title {
    padding: 52px 60px;
  }

  .post main .stan-background-image {
    min-height: 53vw;
    max-height: 544px;
    min-width: 68vw;
    max-width: 73vw;
  }

  .post .overlap-background {
    height: 750px;
  }

  .post main.no-category + .overlap-background {
    height: calc(750px - 48px);
  }
  
  .post main.no-summary + .overlap-background {
    height: calc(750px - 75px);
  }
  
  .post main.no-summary.no-category + .overlap-background {
    height: calc(750px - 75px - 48px);
  }
}

@media only screen and (max-width: 750px) {
  .post main .stan-background-image {
    margin-top: 10px;
  }

  .post .overlap-background {
    height: 640px;
  }

  .post main.no-category + .overlap-background {
    height: calc(640px - 48px);
  }
  
  .post main.no-summary + .overlap-background {
    height: calc(640px - 75px);
  }
  
  .post main.no-summary.no-category + .overlap-background {
    height: calc(640px - 75px - 48px);
  }

  .post h1 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 675px) {
  .post .defined {
    max-width: 100vw;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 650px) {
  .post main .stan-background-image {
    margin-top: 10px;
  }

  .post .overlap-background {
    height: calc(465px + 25vw);
  }

  .post main.no-category + .overlap-background {
    height: calc(calc(465px + 25vw) - 48px);
  }
  
  .post main.no-summary + .overlap-background {
    height: calc(calc(465px + 25vw) - 75px);
  }
  
  .post main.no-summary.no-category + .overlap-background {
    height: calc(calc(465px + 25vw) - 75px - 48px);
  }

  .post h1 {
    font-size: 38px;
  }

  .post .post-title {
    padding: 52px 60px;
    padding-top: 65px;
  }

  .post .actions.end-of-post .share-links {
    margin-left: 0;
    margin-top: 45px;
  }
}

/* mobile - title (+ defined) */
@media only screen and (max-width: 510px) {
  .post .overlap-background {
    height: 0;
  }

  .post .post-title {
    background-color: var(--green-grey-background);
    padding: 58px 35px;
  }

  .post h1 {
    font-size: 35px;
  }

  .post main .stan-background-image {
    margin-top: 0px;
    min-width: 100%;
    max-width: 100%;
    min-height: 71.5vw;
  }

  .post .plc {
    margin-top: 0px;
    padding-bottom: 84px;
  }

  .post .post-title .recipe-category-title {
    margin-bottom: 25px;
  }

  .post .defined .ingredients {
    padding: 66px 62px;
  }

  .post .defined .method {
    margin-top: 66px;
  }

  .post .actions.end-of-post {
    margin-bottom: 85px;
    transition: margin .3s;
  }

  .post .actions.end-of-post.expand {
    margin-bottom: 110px;
  }

  .post .actions.end-of-post.expand.no-print-option {
    margin-bottom: 85px;
  }

  .post .defined .ingredients .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 2;
  }

  .post .defined .ingredients .serves {
    margin-top: 20px;
  }

  .post .defined .ingredients-list :first-child.sub-title {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 445px) {
  .post .defined {
    padding-left: 0;
    padding-right: 0;
  }
  
  .post .defined .method {
    padding: 0 7vw;
    padding: 0 min(max(24px, 100px), 7vw);
    padding: 0 clamp(24px, 100px, 7vw);
  }

  .post .defined .left {
    padding: 0 7vw;
    padding: 0 min(max(24px, 100px), 7vw);
    padding: 0 clamp(24px, 100px, 7vw);
  }

  .post .defined .tip-wrap {
    padding: 0 17px;
    width: 100%;
  }

  .post .defined .tip {
    min-width: 100%;
  }

  .post .defined .ingredients {
    padding: 58px 54px;
  }

  .post .actions.end-of-post {
    transition: margin .3s;
  }

  .post .actions.end-of-post.expand {
    margin-bottom: 205px;
  }

  .post .actions.end-of-post.expand.no-print-option {
    margin-bottom: 165px;
  }

  .post .actions.end-of-post .share-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .post .actions.end-of-post .share-links a {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 400px) {
  .post .defined .ingredients {
    padding: 56px 50px;
  }
}

@media only screen and (max-width: 385px) {
  .post .defined .ingredients {
    padding: 54px 46px;
  }

  .post .defined .method {
    margin-top: 62px;
  }

  .post .defined .tip {
    padding: 45px 38px
  }

  .post .defined .tip .title {
    transform: translateY(-69px);
  }
}

@media only screen and (max-width: 362px) {
  .post .defined .ingredients {
    padding: 50px 11vw;
    padding: 50px min(max(26px, 100px), 11vw);
    padding: 50px clamp(26px, 100px, 11vw);
  }

  .post .defined .method {
    margin-top: 60px;
  }

  .post .defined .tip {
    padding: 47px 10vw;
    padding: 47px min(max(26px, 100px), 10vw);
    padding: 47px clamp(26px, 100px, 10vw);
  }
}

@media only screen and (max-width: 330px) {
  .post .defined .ingredients {
    padding: 48px 10vw;
    padding: 48px min(max(26px, 100px), 10vw);
    padding: 48px clamp(26px, 100px, 10vw);
  }
}


/* =====================
  Recipe Print
======================== */

.logo-for-print {
  display: none;
}

@media print {
  body > :not(.show-in-print) {
     display: none;
  }

  main > :not(.show-in-print) {
    display: none;
  }

  .logo-for-print {
    display: flex!important;
    justify-content: center;
    padding: 23px 25px!important;
  }

  .logo-for-print img {
    max-width: 185px;
  }

  .post .post-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 26px 35px;
    width: 90%;
  } 

  .post main {
    padding: 0!important;
  }

  .post main .stan-background-image {
    min-height: 200px;
    max-height: 100%;
    min-width: 290px;
    max-width: 290px;
    margin: 0 auto;
  }

  .post .post-title h1 {
    font-size: 24px;
    color: var(--true-black);
  }

  .post .post-title h1.no-category {
    margin-top: 0;
  }

  .post .post-title .summary {
    font-size: 11px;
    color: var(--true-black);
    margin-top: 17px;
    max-width: 320px;
  }

  .post .post-title .recipe-category-title {
    margin-bottom: 11px;
    font-size: 9px;
  }

  .post .defined .method p {
    font-size: 13px;
    color: var(--true-black);
  }

  .post .overlap-background {
    display: none;
  }

  .post .defined {
    display: flex;
    max-width: 1302px;
    width: 100%;
    margin: 0 auto;
    margin-top: 45px;
    justify-content: space-between;
    padding: 0;
    box-sizing: border-box;
  }

  .post .defined .right {
    display: block;
    padding-left: 25px;
    padding-right: 20px;
  }
  
  .post .defined .ingredients {
    padding: 0;
    padding-left: 20px;
    padding-right: 25px;
    min-width: 300px;
    max-width: 300px;
    background-color: transparent;
  }
  
  .post .defined .ingredients .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
  }

  .post .defined .ingredients .top h2{
    color: var(--true-black);
  } 

  .post .defined .ingredients-list li a,
  .post .defined .method p a,
  .post .defined .tip p a {
    border: none;
  }

  .post .defined h2 {
    font-size: 20px;
    color: var(--true-black);
  }
  
  .post .defined .ingredients .serves {
    font-size: 14px;
    margin-top: -7px;
    color: var(--true-black);
  }
  
  .post .defined .ingredients-list {
    list-style-type: none;
  }
  
  .post .defined .ingredients-list li {
    margin: 9px 0;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--sans-serif);
    color: var(--true-black);
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .post .defined .ingredients-list li.sub-title {
    margin-top: 25px;
    margin-bottom: 0;
    font-style: italic;
    font-family: var(--serif);
    font-size: 14px;
  }

  .post .defined .ingredients-list li.sub-title + li {
    margin-top: 7px;
  }
  
  .post .defined .ingredients-list :last-child {
    margin-bottom: 0;
  }
  
  .post .defined .method {
    max-width: 576px;
    margin: 0;
    margin-top: 0;
  }
  
  .post .defined .method .heading-with-line {
    margin-bottom: 28px;
  }

  .post .defined .method h2 {
    color: var(--true-black);
  }
  
  .post .defined .tip {
    max-width: 668px;
    background-color: var(--grey-f);
    padding: 25px 33px;
    position: relative;
    margin-top: 40px;
    display: block;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  
  .post .defined.no-defined-present .tip {
    margin-top: 0;
  }
  
  .post .defined .tip .title {
    text-transform: uppercase;
    padding: 8px 18px;
    background-color: var(--magenta);
    position: absolute;
    transform: translateY(-25px);
    display: inline-block;
  }
  
  .post .defined .tip .title h3 {
    font-weight: 500;
    font-family: var(--sans-serif);
    font-size: 10px;
    color: var(--white);
    letter-spacing: 0.8px;
  }
  
  .post .defined .tip p {
    font-weight: 400;
    font-family: var(--sans-serif);
    font-size: 12px;
    line-height: 167.5%;
    color: var(--true-black);
    padding-top: 17px;
  }
  
  .post .actions {
    display: none;
  }  

  .post .title-cover-image {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 10px;
    align-items: center;
  }

  * {
    -webkit-print-color-adjust: exact !important;   /* Chrome, Safari, Edge */
    color-adjust: exact !important;                 /*Firefox*/
  }

  /*@page { margin: 0; }
  body { margin: 1.6cm; }*/
}



/* =====================
  B&B
======================== */
.bb .main-nav {
  justify-content: flex-end;
}

.bb .main-nav li {
  margin-right: 12px;
}

.bb .main-nav li a:hover {
  color: var(--green-grey-text);
}

.bb .main-nav ul {
  align-items: center;
}

.bb .main-nav .book-button {
  border: 2px solid var(--grey-h);
  padding: 9px 31px;
  transition: background-color .2s, border .2s;
  margin-left: 18px;
}

.bb .main-nav .book-button:hover {
  background-color: var(--grey-h-light);
  border-color: var(--grey-h-light);
  color: var(--black);
}

.bb .burger-icon-button {
  display: none;
}

.bb .logo {
  max-width: 360px;
}

.bb .tagline {
  margin-top: 13px;
  display: flex;
  width: 100%;
  align-items: center;
}

.bb .tagline .text {
  width: 100%;
  max-width: 272px;
  height: 100%;
  flex-shrink: 4;
  margin: 0 20px;
}

.bb .tagline .line {
  width: 100%;
  height: 1px;
  background-color: var(--black);
  flex-shrink: 14;
}

.bb .title {
  text-align: center;
  padding: 60px 65px;
  padding-top: min(max(60px, 11vh), 100px);
  padding-bottom: min(max(60px, 12.5vh), 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bb .title p {
  max-width: 610px;
  margin-top: 23px;
}

.bb .title h2 {
  max-width: 800px;
  font-size: 42px;
}

.bb .overlap-background {
  height: 740px;
}

.bb .gallery {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.bb .gallery .content {
  max-width: 95%;
}

.bb .top {
  display: flex;
  align-items: center;
}

.bb .gallery .image-list {
  height: 72vh;
  max-height: 712px;
  width: calc(72vh + 519px);
  max-width: 1231px;
  list-style-type: none;
  position: relative;
}

.bb .gallery .image-list li {
  max-width: 100%;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
  transition: opacity .25s, transform .4s;
}

.bb .gallery .image-list li.hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: none;
  top: 0;
  left: 0;
}

.bb .gallery .image-list .image {
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  /*margin: 2px 0; <-- if iPad image line issue comes back, I could try this */
  position: absolute;
  object-fit: cover;
}

.bb .gallery .image-list .image.full-width {
  min-width: 100%;
}

.bb .gallery .image-list .image.half-min-width {
  min-width: 45%;
}

.bb .gallery .right-arrow {
  transform: none;
  fill: none;
}

.bb .gallery .arrow {
  padding: 20px;
}

.bb .gallery .arrow svg {
  width: 50px;
  height: 100%;
  stroke: var(--black);
  stroke-width: 1px;
  transition: stroke .2s;
}

@media only screen and (hover: hover) and (pointer: fine) {
  .bb .gallery .arrow:hover svg{
    stroke: var(--green-grey-text);
  }
}

.bb .counter {
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
  margin-right: 90px;
  margin-top: 21px;
  position: relative;
}

.bb .content .mobile-arrows {
  display: none;
  position: absolute;
  top: 0;
  left: 44px;
  margin-top: -9px;
}

.bb .content .mobile-arrows > :first-child {
  margin-right: 18px;
}

.bb .counter .line {
  width: 254px;
  height: 2px;
  background-color: rgba(28, 28, 28, 14%);
  position: relative;
  margin-right: 25px;
  margin-top: 5px;
}

.bb .counter .line .indicator {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 32px;
  background-color: var(--black);
  transition: transform .3s;
}

.bb .counter .text {
  font-family: var(--sans-serif);
  font-size: 12px;
  font-weight: 600;
}

/* below gallery sections */

.bb .about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 50px 125px 50px;
}

.bb .dining {
  display: flex;
  justify-content: center;
  padding: 0 50px;
}

.bb .dining .content {
  background-color: var(--green-grey-background);
  width: 100%;
  max-width: 1388px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bb .dining .content .text {
  padding: 80px 100px;
  width: 100%;
  box-sizing: content-box;
  margin: 0 auto;
}

.bb .about .image {
  height: 715px;
  width: 571px;
}

.bb .dining .image {
  height: 556px;
  width: 556px;
}

.bb .about .text, 
.bb .location .text {
  margin-left: 175px;
}

.bb .stan-section-with-text .text h2 {
  margin-bottom: 17px;
  font-size: 42px;
}

.bb .stan-section-with-text .text {
  max-width: 505px;
}

.bb .map {
  width: 571px;
  height: 564px;
  background-color: var(--grey-c);
}

.bb .location {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 50px 125px 50px;
}

.bb .about, 
.bb .location {
  padding-right: 80px;
}

.bb .location .links {
  margin-top: 32px;
  margin-left: -10px;
  display: flex;
}

.bb .pricing-contact {
  display: flex;
  justify-content: center;
  padding: 0 50px;
}

.bb .pricing-contact .content {
  background-color: var(--grey-a);
  width: 100%;
  max-width: 1388px;
  padding: 102px 82px;
}

.bb .pricing-contact .content .content-inner {
  max-width: 1078px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.bb .pricing-contact.stan-section-with-text .text h2 {
  font-size: 30px;
}

.bb .pricing-contact.stan-section-with-text .text h3 {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 6px;
}

.bb .pricing-contact address a {
  font-family: var(--serif);
  font-size: 16px;
  transition: color .2s;
}

.bb .pricing-contact address a:hover {
  color: var(--green-grey-text);
}

.bb .pricing-contact .pricing {
  margin-right: 108px;
  flex-shrink: 1;
}

.bb .pricing-contact .contact {
  flex-shrink: 0;
}

.bb .pricing-contact .contact .details {
  display: flex;
}

.bb .pricing-contact .contact .address {
  margin-right: 70px;
}

.bb .book {
  width: 100%;
  background-color: var(--green-grey-background);
  display: flex;
  justify-content: center;
  margin-top: 205px;
}

.bb .book .content {
  padding-left: 75px;
  padding-bottom: 24px;
  display: flex;
  width: 100%;
  max-width: 1388px;
}

.bb .book .image {
  height: 441px;
  width: 370px;
  transform: translateY(-80px);
}

.bb .book .text-link {
  margin-top: 100px;
  margin-left: 121px;
  display: flex;
  align-items: center;
  align-self: flex-start;
}

.bb .book .text-link h2 {
  margin-right: 130px;
  min-width: 280px;
}

.bb .book .book-button {
  border: 2px solid var(--grey-h);
  padding:  18px 35px;
  transition: background-color .2s, border .2s;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bb .book .book-button:hover {
  background-color: var(--grey-h-light);
  border-color: var(--grey-h-light);
}

.bb .book .book-button .text {
  color: var(--black);
  font-weight: 500;
  font-size: 15px;
  font-family: var(--sans-serif);
}

.bb .book .book-button .right-arrow {
  fill: var(--black);
  margin-left: 8px;
}

.bb footer {
  display: flex;
  justify-content: center;
  background-color: var(--white);
  padding: 0 50px;
}

.bb footer .content {
  display: flex;
  width: 100%;
  max-width: 1388px;
  justify-content: space-between;
  align-items: center;
  padding: 34px 0;
}

.bb footer .bb-footer-logo {
  max-width: 210px;
}

.bb footer .bb-footer-logo path {
  transition: fill .2s;
}

.bb footer .bb-footer-logo-wrap {
  display: flex;
  align-items: center;
}

.bb footer .bb-footer-logo-wrap:hover .bb-footer-logo path {
  fill: var(--green-grey-text);
}

.bb footer .social-links {
  margin-bottom: -4px;
  margin-left: -44px;
}

.bb footer .social-links a:hover {
  fill: var(--green-grey-text);
}

.bb footer .quick-links ul {
  list-style-type: none;
  display: flex;
}

.bb footer .quick-links ul li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.bb footer .quick-links ul li a {
  transition: color .2s;
  padding: 4px 5px;
}

.bb footer .quick-links ul li a:hover {
  color: var(--green-grey-text);
}

.bb footer .quick-links ul > :first-child {
  margin-right: 20px
}

.bb span.avoid-wrap { 
  display: inline-block; 
}

@media only screen and (max-height: 870px) {
  .bb .overlap-background {
    height: 685px;
  }
}

@media only screen and (max-height: 795px) {
  .bb .overlap-background {
    height: 83vh;
  }
}

@media only screen and (max-height: 660px) {
  .bb .overlap-background {
    height: 580px;
  }
}

@media only screen and (max-height: 590px) {
  .bb .overlap-background {
    height: 530px;
  }
}

@media only screen and (max-height: 490px) {
  .bb .overlap-background {
    height: 490px;
  }
}

@media only screen and (max-height: 400px) {
  .bb .overlap-background {
    height: 480px;
  }
}

@media only screen and (max-height: 300px) {
  .bb .overlap-background {
    height: 460px;
  }
}

@media only screen and (max-width: 1710px) {
  .bb .logo {
    max-width: 330px;
  }

  .bb .tagline .text {
    margin: 0 14px;
    flex-shrink: 3.5;
  }
}

@media only screen and (max-width: 1550px) {
  .bb .main-nav ul li :not(.keep-on-smaller-screen){
    display: none;
  }
}

@media only screen and (max-width: 1380px) {
  .bb .about .text, 
  .bb .location .text {
    margin-left: 11%;
    flex-shrink: 5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .bb .about .image, 
  .bb .location .map {
    flex-shrink: 1;
    flex-grow: 0;
  }

  .bb .dining .image {
    min-height: 530px;
    height: 100%;
    width: 530px;
    flex-shrink: 1;
  }

  .bb .dining .content .text {
    flex-shrink: 7;
    padding: 125px 100px;
  }

  .bb .book .text-link {
    margin-left: 0;
    justify-content: space-between;
    width: 100%;
    max-width: 58%;
  }

  .bb .book .content {
    padding-right: 10vw;
    justify-content: space-between;
  }
  
  .bb .book .text-link h2 {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1300px) {
  .bb .book .image {
    height: 410px;
    width: 320px;
    transform: translateY(-72px);
  }

  .bb .book .text-link {
    max-width: 61.5%;
  }
}

@media only screen and (max-width: 1225px) {
  .bb .about .text, 
  .bb .location .text {
    margin-left: 9.4%;
  }

  .bb .about, 
  .bb .location {
    padding-right: 75px;
  }

  .bb .dining .content .text {
    padding: 125px 8.3%;
  }

  .bb .book .text-link {
    flex-direction: column;
    align-items: flex-start;
    max-width: none;
    margin-left: 12%;
    width: auto;
    margin-top: 80px;
  }

  .bb .book .content {
    justify-content: flex-start;
    padding-left: 8%
  }

  .bb .book .text-link h2 {
    margin-bottom: 51px;
  }
}

@media only screen and (max-width: 1165px) {
  .bb .main-nav ul {
    display: none;
  } 

  .bb .main-nav .burger-icon-button {
    display: inline-block;
  }

  .bb .dining .content .text {
    padding: 125px 7.8%;
  }

  .bb .dining .image {
    flex-shrink: 2;
  }
}


@media only screen and (max-width: 1114px) {
  .bb .pricing-contact .contact .address {
    margin-right: 50px;
  }

  .bb .gallery .content {
    max-width: 97%;
  }
}

@media only screen and (max-width: 1090px) {
  .bb .about .image,
  .bb .location .map {
    flex-shrink: 1.1;
  }

  .bb .about .text, 
  .bb .location .text {
    margin-left: 8%;
    flex-shrink: 4;
  }

  .bb .about, 
  .bb .location {
    padding-right: 66px;
    padding-left: 40px;
  }

  .bb .about .image {
    height: 610px;
  }
}

@media only screen and (max-width: 1022px) {
  .bb .about, 
  .bb .location {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 115px 50px 115px 50px;
  }

  .bb .location .links {
    margin-top: 27px;
  }

  .bb .about {
    padding-top: 90px;
  }

  .bb .about .text, 
  .bb .location .text,
  .bb .dining .content .text {
    margin-left: 80px;
    margin-bottom: 70px;
    width: 100%;
    max-width: 580px;
  }

  .bb .dining .content .text {
    margin-bottom: 0;
    padding: 110px 3.8%;
  }

  .bb .dining .content {
    flex-direction: column;
    align-items: flex-start;
  }

  .bb .about .image,
  .bb .location .map,
  .bb .dining .image {
    width: 100%;
    height: 550px;
  }
}

@media only screen and (max-width: 1000px) {
  .bb .book {
    margin-top: 180px;
  }

  .bb .pricing-contact .contact {
    min-width: 31%;
  }

  .bb .pricing-contact .contact .details {
    flex-direction: column;
  }

  .bb .pricing-contact .contact .address {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .bb .pricing-contact .content .content-inner {
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 930px) {
  .bb .title {
    padding-top: min(max(20px, 9vh), 70px);
    padding-bottom: min(max(82px, 9.5vh), 90px);
  }

  .bb .gallery .content {
    max-width: 100%;
  }

  .bb .gallery .top .arrow {
    display: none;
  }
  
  .bb .content .mobile-arrows {
    display: flex;
  }

  .bb .gallery .arrow {
    padding: 5px;
  }

  .bb .gallery .arrow svg {
    width: 28px;
    stroke-width: 1.5px;
  }

  .bb .gallery .counter {
    margin-right: 60px;
  }

  .bb .counter .line {
    width: 180px;
  }

  .bb .about .text, 
  .bb .location .text,
  .bb .dining .content .text {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
    max-width: 650px;
  }

  .bb .dining .content .text {
    margin: 0 auto;
    padding: 110px 13.1%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .bb .about, 
  .bb .location,
  .bb .dining .content {
    align-items: center;
  }

  .bb footer {
    padding: 0 60px;
  }
 
  .bb footer .bb-footer-logo-wrap {
    display: none;
  }

  .bb footer .social-links {
    margin-bottom: -4px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 840px) { 
  .bb .dining .content .text {
    padding: 96px 13.5%;
  }
}

@media only screen and (max-width: 800px) {
  .bb .title h2 {
    max-width: 500px;
  }

  .bb .title p {
    max-width: 560px;
  }

  .bb .pricing-contact .content {
    padding: 95px 80px;
  }

  .bb .dining .content .text {
    padding: 90px 13.4%;
  }

  .bb .pricing-contact .content .content-inner {
    flex-direction: column;
  }

  .bb .pricing-contact .pricing {
    margin-right: 0;
    margin-bottom: 64px;
  }

  .bb .pricing-contact .contact .details {
    flex-direction: row;
  }

  .bb .pricing-contact .contact .address {
    margin-right: 60px;
    margin-bottom: 0;
  }

  .bb .book .image {
    height: 365px;
    width: 260px;
  }

  .bb .book .content {
    padding-left: 7.5%;
  }

  .bb .book .text-link {
    margin-top: 70px;
  }

  .bb .book .text-link h2 {
    margin-bottom: 43px;
  }
}

@media only screen and (max-width: 750px) { 
  .bb .header-logo {
    margin-top: 40px;
    margin-bottom: 41px;
  }

  .bb .main-nav {
    margin-top: 34px;
  }
}

@media only screen and (max-width: 730px) {  
  .bb .book {
    margin-top: 195px;
  }

  .bb .book .content {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-left: 5%;
    padding-right: 4%;
  }

  .bb .book .text-link {
    margin-left: 4.2%;
    margin-right: 10.5%;
  }

  .bb .book .text-link h2 {
    font-size: 32px;
    margin-bottom: 39px;
  }
}

@media only screen and (max-width: 700px) {  
  .bb .logo {
    display: none;
  }

  .bb .tagline .text {
    margin: 0;
    min-width: 250px;
    width: 48vw;
  }

  .bb .tagline {
    margin: 0;
  }

  .bb .tagline .line {
    display: none;
  }

  .bb .main-nav {
    max-width: 87%;
  }
}

@media only screen and (max-width: 670px) {
  .bb .title {
    padding-left: 13%;
    padding-right: 13%;
  }

  .bb .book {
    margin-top: 90px;
  }

  .bb .book .content {
    padding-bottom: 15px;
    padding-top: 8px;
  }

  .bb .pricing-contact,
  .bb .dining {
    padding: 0 40px;
  }

  .bb .about, 
  .bb .location {
    padding: 90px 40px 90px 40px;
  }

  .bb .about {
    padding-top: 87px;
  }

  .bb .pricing-contact .content {
    padding: 85px 70px;
  }

  .bb .pricing-contact .pricing {
    margin-bottom: 58px;
  }

  .bb .pricing-contact .contact .details {
    flex-direction: column;
  }

  .bb .pricing-contact .contact .address {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .bb .book .image {
    display: none;
  }

  .bb .book .text-link {
    margin-left: 11%;
    margin-right: 0;
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 535px) {
  .bb .about .text, 
  .bb .location .text {
    padding-left: 0;
    padding-right: 0;
  }

  .bb .dining .image {
    max-height: 410px;
    min-height: unset;
  }

  .bb .about .image,
  .bb .location .map {
    height: 410px;
  }
}

@media only screen and (max-width: 510px) {
  .bb .header-logo {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .bb .main-nav {
    max-width: 89.5%;
    margin-top: 23px;
  }

  .bb .title {
    padding: 56px 10.2% 60px 10.2%;
  }

  .bb .title h2 {
    font-size: 36px;
  }

  .bb .stan-section-with-text .text h2 {
    font-size: 40px;
  }

  .bb .gallery .image-list .image.full-width,
  .bb .gallery .image-list .image.half-min-width {
    min-width: 100%;
  }

  .bb .gallery .counter {
    margin-right: 30px;
    margin-top: 19px;
  }

  .bb .gallery .mobile-arrows {
    left: 25px;
    margin-top: -8px;
  }

  .bb .gallery .counter {
    align-items: flex-end;
    flex-direction: column;
  }

  .bb .gallery .counter .text {
    margin-top: 13px;
  }

  .bb .gallery .counter .line {
    margin-right: 0;
    width: 50%;
  }

  .bb .gallery .arrow svg {
    width: 26px;
  }

  .bb .about .text, 
  .bb .location .text {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 60px;
  }

  .bb .about, 
  .bb .location {
    overflow: hidden;
    padding: 60px 0;
    padding-right: 12%;
    padding-left: 12%;
  }

  .bb .about .image,
  .bb .location .map {
    width: 100vw;
  }

  .bb .about {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .bb .pricing-contact {
    padding-right: clamp(24px, 100px, 7vw);
    padding-left: clamp(24px, 100px, 7vw);
  }

  .bb .pricing-contact .pricing {
    margin-bottom: 54px;
  }

  .bb .dining {
    padding-left: 0;
    padding-right: 0;
  }

  .bb .book {
    margin-top: 60px;
  }

  .bb .pricing-contact .content {
    padding: 62px 58px;
  }

  .bb .dining .content .text {
    padding: 60px 12%;
  }

  .bb .pricing-contact .contact .address {
    margin-bottom: 28px;
  }

  .bb .book .text-link {
    align-items: center;
    margin: 54px 0;
  }

  .bb .book .text-link h2 {
    text-align: center;
    margin-bottom: 37px;
  }

  .bb .book .content {
    justify-content: center;
  }

  .bb footer .quick-links {
    display: none;
  }

  .bb footer .content {
    justify-content: center;
    padding: 30px 0;
  }

  .bb footer .social-links ul > :last-child a {
    margin-right: 0;
  }
}

@media only screen and (max-width: 490px) {
  .bb .main-nav {
    margin-top: 23px;
  }

  .bb .tagline .text {
    max-width: 245px;
    min-width: unset;
    width: 100%;
  }
}

@media only screen and (max-width: 450px) {
  .bb .title {
    padding-left: 8.4%;
    padding-right: 8.4%;
  }

  .bb .dining {
    padding-left: 0;
    padding-right: 0;
  }

  .bb .pricing-contact .content {
    padding: 60px 55px;
  }

  .bb .dining .content .text {
    padding: 60px 11.5%;
  }

  .bb .about, 
  .bb .location {
    padding-right: 11.5%;
    padding-left: 11.5%;
  }
}


@media only screen and (max-width: 434px) {
  .bb .tagline .text {
    max-width: 54vw;
    max-width: min(max(165px, 54vw), 240px);
    max-width: clamp(165px, 54vw, 240px)
  }
}

@media only screen and (max-width: 400px) {
  .bb .gallery .counter {
    margin-right: 25px;
  }

  .bb .gallery .counter .line {
    width: 46%;
  }

  .bb .dining {
    padding-left: 0;
    padding-right: 0;
  }

  .bb .dining .content .text {
    padding: 60px 10.5%;
  }

  .bb .about, 
  .bb .location {
    padding-right: 10.5%;
    padding-left: 10.5%;
  }

  .bb .pricing-contact .content {
    padding: 60px 52px;
  }
}

@media only screen and (max-width: 360px) {
  .bb .main-nav {
    margin-top: 22px;
  }

  .bb .pricing-contact .content {
    padding: 60px 14%;
  }

  .bb .book .text-link h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .bb .dining .content .text {
    padding-right: clamp(24px, 100px, 8vw);
    padding-left: clamp(24px, 100px, 8vw);
  }

  .bb .about, 
  .bb .location {
    padding-right: clamp(24px, 100px, 8vw);
    padding-left: clamp(24px, 100px, 8vw);
  }
}

@media only screen and (max-width: 340px) {
  .bb .title h2 {
    font-size: 36px;
  }

  .bb .about {
    padding-top: 70px;
  }

  .bb .book .book-button .right-arrow {
    display: none;
  }

  .bb .gallery .counter .line {
    display: none;
  }

  .bb .gallery .counter .text {
    margin-top: 0;
  }

  .bb .gallery .counter {
    margin-top: 18px;
  }
}