/* box-sixing */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* utilities */

.u-cf:after {
  content: "";
  display: table;
  clear: both;
}

.u-ht {
  position: absolute; 
  overflow: hidden; 
  clip: rect(0 0 0 0); 
  height: 1px;
  width: 1px; 
  margin: -1px;
  padding: 0;
  border: 0;
}

.u-ct {
  text-align: center;
}

.rel {
  position: relative;
}

body {
  /* better font-rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: museo, serif; 
  font-weight: 300;
  font-style: normal;

}

h1, h2, h3 {
  font-family: museo-sans-rounded, sans-serif;
  font-weight: 1000;
}

/* default styles for content */

.content h1 {
  color: #333;
  font-size: 4em;
}

.content h2 {
  color: #333;
  font-size: 2.6em;
}

.content h3 {
  color: #333;
  font-size: 2em;
}

.content p {
  font-size: 1.2em;
  line-height: 1.5;
}

a {
  color: inherit;
}


.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
}

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

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

}

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

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

}

.site-logo {
  margin: 0;
  padding: 1.5rem 0 0 0;
  width: 220px;
}

.site-logo img {
  width: 100%;
}

.main-nav {

}

.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
}

.main-nav__list.is-active {
  overflow: visible;
}

.main-nav__item {
  margin-bottom: 1rem;
  font-size: 1em;
  color: #333;
  font-weight: 700;
  position: relative;
  border-radius: 7px;
}

.main-nav__item:first-child {
  margin-top: 1rem;
}

.main-nav__item a {
  text-decoration: none;
  color: inherit;
  padding: 6px;
  display: block;
  height: 100%;
}



.main-nav__item.active a {
  color: #fff ;
}

.main-nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
}
.main-nav__sub-list {
  list-style: none;
  display: none;
}


.main-nav__sub-item {

}



/* nav hover colours: */

/* background-color: rgba(121, 54, 148, 0.8); */

/* menu toggle states etc.. */
.js .main-nav {
  
}

/*
.js .main-nav__list {
  transition: transform 120ms linear;
  transform: translateY(-100%);
}
.js .main-nav__list.is-active {
  transform: translateY(0);
}
*/

.js .main-nav__list {
  transition: height 120ms linear;
  height: 0;
}
.js .main-nav__list.is-active {
  height: 890px;
}

.menu-toggle {
  margin: 0 12px 0 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  border: 0;
  background-color: transparent;
  position: relative;
  z-index: 10;
  float: right;
  margin-top: -134px;
  pointer-events: all;
}

.menu-toggle__box {
  position: relative;
  display: inline-block;
  width: 2.6em;
  height: 1.4em;
}

.menu-toggle__lines,  .menu-toggle__lines::before, .menu-toggle__lines::after {
  position: absolute;
  background-color: #FFF;
  width: 2.6em;
  height: 4px;
  border-radius: 4px;
  transition-property: transform;
}

/* menu button transition - adapted from https://jonsuh.com/hamburgers/ */

.menu-toggle__lines {
  display: block;
  top: 50%;
  /* animation - for when the menu is switched back from active */
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: 75ms;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines {
  /* animation - menu is active - rotate but wait until the other lines have finished moving */
  transform: rotate(45deg);
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transition-delay: 120ms;
}

.menu-toggle__lines::before {
  display: block;
  content: "";
  top: -10px;
  /* on switch back from active delay top movement until after rotation */
  transition: top 75ms ease 120ms,opacity 75ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  top: 0;
  opacity: 0;
  /* on switch to active - move immediately, delay opacity */
  transition: top 75ms ease,opacity 75ms ease 120ms;
}

.menu-toggle__lines::after {
  display: block;
  content: "";
  bottom: -10px;
  /* on switch back from active delay top movement until after rotation - but rotate immediately */
  transition: bottom 75ms ease 120ms,transform 75ms cubic-bezier(.55,.055,.675,.19);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  bottom: 0;
  /* on switch to active - move immediately, delay rotation */
  transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) 120ms;
  transform: rotate(-90deg);
}

/* switch off the burger menu */
@media screen and (min-width: 700px) {

  .menu-toggle {
    display: none;
  }

  .js .main-nav__list, .js .main-nav__list.is-active {
    height: auto;
  }

  .site-logo {
    float: left;
    width: 170px;
    margin-right: 1rem;
  }

  .main-nav__list {
    display: flex;
    flex-wrap: wrap;
    padding-top: 3rem;
    overflow: initial;
  }

  .main-nav__list:after {
    content: "";
    display: table;
    clear: both;
  }

  .main-nav__item {
    /*max-width: 130px;*/
    margin-right: 1rem;
    /*float: left;*/
    display: inline-block;
    font-size: 1em;
    width: 110px;
    vertical-align: top;
  }

  .main-nav__item:hover {
    background-color: rgba(121, 54, 148, 0.9);
    color: #fff;
  }

  .main-nav__item:first-child {
    margin-top: 0;
  }

  .main-nav__item:last-child {
    margin-right: 0;
  }


  .main-nav__sub-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 10;
    top: 100%;
  }

  .main-nav__sub-list::before {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(121, 54, 148, 0.9);
      border-radius: 12px;
      margin-top: 32px;
      content: " ";
      z-index: 0;
      width: 200vw;
      transform: translateX(-100vw);
    }

    .main-nav__item:hover .main-nav__sub-list {
      display: block;
    }

    .main-nav__sub-item {
      position: relative;
      width: 260px;
    }

    .main-nav__sub-item:first-child {
      margin-top: 44px;
    }

    .main-nav__sub-item:last-child {
      margin-bottom: -15px;
    }

    .main-nav__sub-item:first-child::before {
      content: " ";
      position: absolute;
      width: 0; 
      height: 0; 
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-bottom: 12px solid rgba(121, 54, 148, 0.9);
      top: -24px;
      left: 6px;
    }

    /* I love colour coded sections */
    
    /* .t-yellow */

    .page-top--t-yellow .main-nav__item:hover {
      background-color: rgba(206,178,14,0.9);
      color: #fff;
    }

    .page-top--t-yellow .main-nav__sub-list::before {
      background-color: rgba(206,178,14,0.9);
    }

    .page-top--t-yellow .main-nav__sub-item:first-child::before {
      border-bottom: 12px solid rgba(206,178,14,0.9);
    }

    .page-top--t-yellow .banner__content {
      color: #363636;
    }

    /* .t-blue */

    .page-top--t-blue .main-nav__item:hover {
      background-color: rgba(0,180,206,0.9);
      color: #fff;
    }

    .page-top--t-blue .main-nav__sub-list::before {
      background-color: rgba(0,180,206,0.9);
    }

    .page-top--t-blue .main-nav__sub-item:first-child::before {
      border-bottom: 12px solid rgba(0,180,206,0.9);
    }

    /* .t-deep-pink */

    .page-top--t-deep-pink .main-nav__item:hover {
      background-color: rgba(205,46,81,0.9);
      color: #fff;
    }

    .page-top--t-deep-pink .main-nav__sub-list::before {
      background-color: rgba(205,46,81,0.9);
    }

    .page-top--t-deep-pink .main-nav__sub-item:first-child::before {
      border-bottom: 12px solid rgba(205,46,81,0.9);
    }

    /* .t-turquoise */

    .page-top--t-turquoise .main-nav__item:hover {
      background-color: rgba(22,130,116,0.9);
      color: #fff;
    }

    .page-top--t-turquoise .main-nav__sub-list::before {
      background-color: rgba(22,130,116,0.9);
    }

    .page-top--t-turquoise .main-nav__sub-item:first-child::before {
      border-bottom: 12px solid rgba(22,130,116,0.9);
    }


    /* .t-light-pink */

    .page-top--t-light-pink .main-nav__item:hover {
      background-color: #ff7991;
      color: #fff;
    }

    .page-top--t-light-pink .main-nav__sub-list::before {
      background-color: #ff7991;
    }

    .page-top--t-light-pink .main-nav__sub-item:first-child::before {
      border-bottom: 12px solid #ff7991;
    }

    /* .t-red */

    

    .page-top--t-red .main-nav__item:hover {
      background-color: rgba(168,12,9,1);
      color: #fff;
    }

    .page-top--t-red .main-nav__sub-list::before {
      background-color: rgba(168,12,9,1);
    }

    .page-top--t-red .main-nav__sub-item:first-child::before {
      border-bottom: 12px solid rgba(168,12,9,1);
    }

    /* t-green */

  

    .page-top--t-green .main-nav__item:hover {
      background-color: rgba(64,134,9,1);
      color: #fff;
    }

    .page-top--t-green .main-nav__sub-list::before {
      background-color: rgba(64,134,9,1);
    }

    /* .t-darkblue */


    .page-top--t-dark-blue .main-nav__item:hover {
      background-color: #2278C5;
      color: #fff;
    }

    .page-top--t-dark-blue .main-nav__sub-list::before {
      background-color: #2278C5;
    }

    .page-top--t-dark-blue .main-nav__sub-item:first-child::before {
      border-bottom: 12px solid rgba(34,120,197,0.9);
    }

}


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

  .main-nav__list {
    flex-wrap: nowrap;
  }

  .main-nav__item {
    width: auto;
   }

}


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

  .main-nav__list {
    padding-top: 3.4rem;
  }

}


/* holds the navigation and page banner */

.page-top {
  overflow: hidden;
}


/* style modifiers  */
/* yellow fade */
.page-top--t-yellow {
  background: radial-gradient(circle, rgba(238,226,76,1) 17%, rgba(206,178,14,1) 100%, rgba(206,178,14,1) 100%);
  /*color: #bf080b;*/
}

/* green fade */

.page-top--t-green {
  background: radial-gradient(circle, rgba(96,165,17,1) 17%, rgba(64,134,9,1) 100%, rgba(64,134,9,1) 100%);
  color: #FFF;
}


.page-top--t-blue {
  background: radial-gradient(circle, rgba(92,193,215,1) 17%, rgba(0,180,206,1) 100%, rgba(0,180,206,1) 100%);
  color: #FFF;
}

.page-top--t-dark-blue {
  background: radial-gradient(circle, rgba(34,120,197,1) 17%, rgba(17,78,166,1) 100%, rgba(17,78,166,1) 100%);
  color: #FFF;
}


.page-top--t-turquoise {
  background: radial-gradient(circle, rgba(19,153,148,1) 17%, rgba(22,130,116,1) 100%, rgba(22,130,116,1) 100%);
  color: #FFF;
}

.page-top--t-purple {
  background: radial-gradient(circle, rgba(180,136,195,1) 17%, rgba(117,60,145,1) 100%, rgba(117,60,145,1) 100%);
  color: #FFF;
}

.page-top--t-red {
  background: radial-gradient(circle, rgba(214,115,113,1) 1%, rgba(168,12,9,1) 70%, rgba(168,12,9,1) 100%);
  color: #FFF;
}



.page-top--t-deep-pink {
  background: radial-gradient(circle, rgba(222,74,127,1) 17%, rgba(205,46,81,1) 100%, rgba(205,46,81,1) 100%);
  color: #FFF;
}

.page-top--t-light-pink {
  background: #ff7991;
  color: #FFF;
}

.page-top--t-light-green {
  background: #74b744;
  color: #fff;
}

.page-top--t-orange {
  background: #ed7626;
  color: #fff;
}

.page-top--t-light-blue {
  background: #55caf1;
  color: #FFF;
}

.page-top--t-veg-pink {
  background: #f58e9f;
  color: #FFF;
}



header {
  position: relative;
  z-index: 10;
}



.sub-nav {

}

.sub-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sub-nav__item {
  margin: 0 0.5rem 1.7rem 0.5rem;
  font-size: 1.2em;
  color: #333;
  font-weight: 700;
  text-align: center;
}

.sub-nav__heading {
  text-align: center;
  font-size: 2.2em;
}


.banner {
  position: relative;
}

.banner::after {
  display: block;
  height: 220px;
  width: 100%;
  background: url("../res/banners/drip-bg.png") 80% 100% repeat-x;
  background-size: auto 160px;
  position: relative;
}

.banner--subpage::after {
  height: 170px;
}

.banner--advocates::after {
  height: 130px;
}


.banner__header {
  /*color: #bf080b;*/
  font-size: 2.6em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 400px) {
  .banner__header {
    font-size: 2.2em;
  }
}

.banner__header--subpage {
    text-transform: none;
}

 .page-top--t-yellow .banner__header {
  color: #bf080b;
}

.page-top--t-yellow .banner__content {
      color: #363636;
}


.banner__content {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4;
}



.banner__img {
  /*border: 1px solid red;*/
  width: 370px;
  margin: 0 auto -260px auto;
}

.banner__img--advocates {
  margin: 0 auto 0 auto;
}

.banner__img--show-full {
  margin: 0 auto -60px auto;
}


.banner__img--breakout {
  width: 440px;
  margin: 0 auto -146px auto;
}

.banner__img-silo {
  width: 100%;
  /*border: 1px solid blue;*/
}

.banner__img-silo img {
  width: 100%;
  /*border: 1px solid green;*/
}

.banner__icon {
  display: none;
}

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


  .banner--advocates::after {
      height: 220px;
  }

  .banner__icon {
    display: block;
    margin-left: -24%;
    float: left;
  }

  .banner__icon-src {

  }

  .banner__content {
    width: 100%;
    float: left;
    position: relative;
    z-index: 8;
  }


  .banner__img {
    position: absolute;
    left: 60%;
    z-index: 0;
    top: -90px;
    height: 700px;
    width: auto;
    margin: 0;
  }

  .banner__img--recipe {
    top: initial;
    bottom: 0;
    height: 660px;
  }

  .banner__img--advocates {
    margin: 0;
    left: 55%;
    top: -60px;
    height: 440px;
  }

  .banner__img--breakout {
    /*left: 38%;*/
    bottom: 60px;
    top: auto;
  }

  .banner__img-silo {
    height: 100%;
  }

  .banner__img-silo img {
    height: 100%;
    max-width: none;
    width: auto;
  }

  .banner__header {
    margin-top: 3rem;
    font-size: 3.4em;
    max-width: 18ch;
  }

  .banner__copy {
    max-width: 55ch;
  }

  .banner__content--subpage {
    float: none;
    margin-left: 20%;
  }

  .banner__content--subpage {
    padding-left: 2rem;
  }

  .banner__content--blog {
    margin-left: 0;
    width: 100%;
  }

  .banner__content--no-image {
    width: 100%;
  }
  
  .banner__content--no-image h1 {
    max-width: 65ch;
    max-inline-size: 65ch;
  }

  .banner__content--no-image p {
    max-width: 70ch;
    max-inline-size: 70ch;
  }

}


.button {
  border: none;
  border-radius: 6px;
  background-color: #FFF;
  color: #bf080b;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  font-weight: 700;
}

.button--blk {
  display: inline-block;
}

.button--sml {
  font-size: 0.9em;
}

.button--lrg {
  font-size: 1.2em;
}

.button--strip {
  color: #84b354;
}

.button--strip-pink {
  color: #f48190;
}

.button--group {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.button--food {
  color: #fff;
  background-color: #db85a6;
}

.button--food-book {
  color: #f48190;
}

.button--feed-less {
  color: #1a4554;
}

.button--red {
  background-color: #c23b30;
  color: #fff;
}

.button--sub-nav {
  color: #fff;
  background-color: #dd85a6;
  padding-left: 2rem;
  padding-right: 2rem;
}

.button--tabs {
  color: #fff;
  background-color: #b5dd7f;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  display: inline-block;
  width: 100%;
  transition: background-color 0.3s ease-in-out;
}

.button--tabs.is-active {
  color: #b5dd7f;
  background-color: #fff;
}


.tabs {
  background-color: #7dbf39;
  color: #FFF;
  padding-top: 1.6rem;
  padding-bottom: 2rem;
  background: radial-gradient(circle at bottom, rgba(160,211,92,1) 10%, rgba(105,179,35,1) 43%, rgba(105,179,35,1) 95%);
  margin-bottom: 0.5rem;
}

.section__heading {
  text-align: center;
  font-size: 2.2em;
  color: inherit;
}

.section__footnote {
  text-align: center;
  font-style: italic;
  font-size: 1.1em;
  margin-bottom: -2rem;
}

.tabs__nav {
   float: left;
   width: 50%;
}

.tabs__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tabs__item {
  margin-bottom: 1.2rem;
  text-align: center;
}

.tabs__panels {
  float: left;
  width: 50%;
  padding-left: 0.2rem;
}

.tabs__panel {
  position: relative;
}

.tabs__title {
  margin-top: 0;
  text-align: center;
}

.badges {
  text-align: center;
}

.badges__badge {
  text-align: center;
}

.badges__badge:after {
  content: "";
  display: table;
  clear: both;
}

.badges__value {
  display: inline-block;
  border: 2px solid #FFF;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 3.3rem;
  line-height: 3.2rem;
  text-align: center;
  font-family: museo-sans-rounded, sans-serif;
  font-weight: 1000;
  font-size: 1.3em;
}

.badges__label {
  display: block;
  font-size: 1.1em;
  font-weight: 500;
}



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

  .button--tabs {
    padding-left: 2rem;
    padding-right: 2rem;
    width: auto;
  }

  .button--tabs.is-active:after {
    content: " ";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .tabs__nav {
    float: none;
    width: auto;
  }

  .tabs__list {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tabs__list:after {
    content: "";
    display: table;
    clear: both;
  }

  .tabs__item {
    float: left;
    margin-right: 0.6rem;
    position: relative;
  }

  .tabs__panels {
    float: none;
    width: auto;
    padding-left: 0;
  }

  .tabs__title {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.6em;
  }

  .badges {
    width: 540px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
  }

  .badges__badge {
    text-align: left;
  }

  .badges__value {
    float: left;
    width: 4rem;
    height: 4rem;
    border-radius: 4rem;
    line-height: 4rem;
    font-size: 1.5em;
  }

  .badges__label {
    float: left;
    display: inline-block;
    height: 4rem;
    line-height: 4rem;
    margin-left: 0.8rem;
  }




}


/* js enhancement */

.js .tabs__panel {
  display: none;
}

.js .tabs__panel.is-active {
  display: block;
}


.swaps {
  background-color: #dc0c10;
  color: #FFF;
  padding: 2rem 0 0rem 0;
  background: radial-gradient(circle, rgba(243,15,20) 20%, rgba(158,2,3,1) 80%, rgba(158,2,3,1) 100%);
  position: relative;
}

.swaps--recipe-swap {
  background: none;
  padding-top: 0;
  margin-top: -20px;
  color: #dc0c10;
}

.swaps--recipe-swap .help-txt {
  color: #222;
}

.swaps__drip {
  display: block;
  height: 220px;
  width: 100%;
  background: url("../res/banners/drip-bg.png") 80% 100% repeat-x;
  background-size: auto 160px;
  position: relative;
}

.swaps__drip--recipe-swap {
  height: 80px;
  background: none;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.card-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill,252px);
  gap: 2.1rem;
}

/*
@supports (width: min(252px, 100%)) {
  .card-grid-v2 {
   grid-template-columns: repeat(auto-fill, minmax(min(252px, 100%), 1fr));
  }
}
*/

.card {
  margin: 0 1rem 1.5rem 1rem;
  font-weight: 500;
  font-size: 1.2em;
  width: 252px;
  height: 430px;
  perspective: 700px;
}

.card--no-margin {
  margin: 0;
}

.card__side {
  width: 100%;
  background-color: #FFF;
  border-radius: 12px;
  padding: 1rem;
  color: #333;
  height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../res/ui/flip-icon-grey.png);
  background-position: 12px 12px;
  background-repeat: no-repeat;
  background-size: 26px 26px;
}

.card__side--front-recipe-swap {
  border: 1px solid #999;
}

.card__side--back {
  background: rgb(255,252,0);
  /*
  background-image: url(../res/ui/flip-icon-red.png),
    radial-gradient(circle, rgba(255,252,0,1) 0%, rgba(255,253,192,1) 0%, rgba(254,255,0,1) 100%);
  background-position: 12px 12px, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 26px 26px, auto;
  */
  background: radial-gradient(circle, rgba(255,252,0,1) 0%, rgba(255,253,192,1) 0%, rgba(254,255,0,1) 100%);
}

.card__icon-silo {
  width: 100%;
}

.card__icon {
  display: block;
  height: 265px;
  margin: 0 auto;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

@supports ( transform-style: preserve-3d ) {

  .card {
    height: 400px;
  }

  .card__side {
    height: 400px;
  }

}

.card__front-title {
  margin: 0.5rem 0 0 0;
  font-weight: 700;
  text-align: center;
  flex-basis: auto;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}


.card__back-title {
  font-family: museo-sans-rounded, sans-serif;
  font-weight: 1000;
  font-size: 2em;
  text-align: center;
  line-height: 1;
  color: #dc0c10;
  margin: 0 0 1rem 0;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.card__text {
  color: #dc0c10;
  margin: 0 0 0.5rem 0;
  text-align: center;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.card__btn-link {
  background-color: #FFF;
  border-radius: 4px;
  color: #dc0c10;
  padding: 4px 10px;
  text-decoration: none;
  margin-top: 17px;
  display: inline-block;
  pointer-events: auto;
}

.card__side {
  position: absolute;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.4s;
  transform-style: preserve-3d;
}



/* flip the back card so when the card flips it's the right way round */
.card__side--back {
  transform: rotateY(180deg);
}

.card__body, .card__info {
  width: 100%;
}


/* set up the flip */
.card__content {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s;
  transform-style: preserve-3d;
}

.card.is-flipped .card__content {
  /*transform: rotateY(90deg);*/
}

.card.is-flipped .card__side--front {
  transform: rotateY(180deg);
}

.card.is-flipped .card__side--back {
  transform: rotateY(360deg);
}


.link-boxes {
  padding-top: 3rem;
}

.link-box {
  margin-bottom: 1.5rem;
  position: relative;
}

.link-box__content {
  padding: 0 1rem;
  font-size: 1.2em;
  line-height: 1.3;
}

.link-box__header {
  background-color: #1B7FCA;
  color: #FFF;
  padding: 1rem;
  border-radius: 8px;
  margin: 0 0 1rem 0;
  overflow-wrap: break-word;
}

.link-box__icon {
  display: block;
  width: 120px;
}


.link-box__heading {
  font-size: 2.6em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.link-box__cta {
  margin-top: 2rem;
}

.button--link-box {
  background-color: #1B7FCA;
  color: #FFF;
}

/* styling variations for link boxes and their elements */

/* box full of colour */

.link-box--full {
  background-color: #1B7FCA;
  color: #FFF;
  padding: 1rem;
  border-radius: 8px;
  background: radial-gradient(circle at bottom, rgba(82,175,226,1) 17%, rgba(32,116,196,1) 100%, rgba(32,116,196,1) 100%);
}

.link-box--full .link-box__header {
  background-color: transparent;
  padding: 0;
  border-radius: none;
}

.link-box--full .link-box__content {
  padding: 0;
}

.link-box--full .link-box__icon {
  width: 120px;
  margin: 0 auto;
}

.link-box--full .button--link-box {
  background-color: #FFF;
  color: #1B7FCA;
}

/* crimson theme */

.link-box--style-2 {

}

.link-box--style-2 .link-box__header {
  background-color: #912654;
  color: #FFF;
  background: radial-gradient(circle at 80% 180%, rgba(173,60,114,1) 17%, rgba(149,40,87,1) 100%, rgba(149,40,87,1) 100%);
}

.link-box--style-2 .button--link-box {
  background-color: #912654;
  color: #FFF;
}

.link-box--style-2.link-box--full {
  background-color: #912654;
  color: #FFF;
  background: radial-gradient(circle at 80% 180%, rgba(173,60,114,1) 17%, rgba(149,40,87,1) 100%, rgba(149,40,87,1) 100%);
}

.link-box--style-2.link-box--full .link-box__header {
  background:  transparent;
}


/* orange theme */
.link-box--style-3 {

} 

.link-box--style-3 .link-box__header {
  background-color: #D96127;
  color: #FFF;
  background: radial-gradient(circle at 0% 180%, rgba(228,125,60,1) 17%, rgba(215,90,35,1) 100%, rgba(215,90,35,1) 100%);
}

.link-box--style-3 .button--link-box {
  background-color: #D96127;
  color: #FFF;
}

.link-box--style-3.link-box--full {
  background-color: #D96127;
  color: #FFF;
  background: radial-gradient(circle at 0% 180%, rgba(228,125,60,1) 17%, rgba(215,90,35,1) 100%, rgba(215,90,35,1) 100%);
}

.link-box--style-3.link-box--full .link-box__header {
  background:  transparent;
}



/* green theme */
.link-box--style-4 {
  background: radial-gradient(circle at 80% 180%, rgba(96,165,17,1) 17%, rgba(64,134,9,1) 100%, rgba(64,134,9,1) 100%);
}
.link-box--style-4 .button--link-box {
  color: rgba(64,134,9,1);
}

.link-box--t-green {
  background: radial-gradient(circle at 80% 180%, rgba(96,165,17,1) 17%, rgba(64,134,9,1) 100%, rgba(64,134,9,1) 100%);
}
.link-box--t-green .button--link-box {
  color: rgba(64,134,9,1);
}


/* pinky theme */
.link-box--style-5 {
  background: radial-gradient(circle at 80% 180%, rgba(240,77,147,1) 17%, rgba(221,28,83,1) 100%, rgba(221,28,83,1) 100%);
}
.link-box--style-5 .button--link-box {
  color: rgba(221,28,83,1);
}



.link-box--t-yellow {
  background: radial-gradient(circle at 80% 180%, rgba(238,226,76,1) 17%, rgba(206,178,14,1) 100%, rgba(206,178,14,1) 100%);
}

.link-box--t-yellow .button--link-box {
  color: #bf080b;
}

.link-box--t-yellow .link-box__header {
  color: #bf080b;
}


.link-box--t-turquoise {
  background: radial-gradient(circle at 80% 180%, rgba(19,153,148,1) 17%, rgba(22,130,116,1) 100%, rgba(22,130,116,1) 100%);
}
.link-box--t-turquoise .button--link-box {
  color: rgba(22,130,116,1);
}

.button--pledge {
  background-color: rgba(22,130,116,1);
  color: #FFF;
}

.button--block {
  display: inline-block;
  margin-top: 8px;
}


.link-box--t-purple {
  background: radial-gradient(circle at 80% 180%, rgba(180,136,195,1) 17%, rgba(117,60,145,1) 100%, rgba(117,60,145,1) 100%);
}
.link-box--t-purple .button--link-box {
  color: rgba(117,60,145,1);
}


.link-box--t-blue {
  background: radial-gradient(circle at 80% 180%, rgba(92,193,215,1) 17%, rgba(0,180,206,1) 100%, rgba(0,180,206,1) 100%);
}
.link-box--t-blue .button--link-box {
  color: rgba(0,180,206,1);
}

.link-box--t-deep-pink {
  background: radial-gradient(circle at 80% 180%, rgba(222,74,127,1) 17%, rgba(205,46,81,1) 100%, rgba(205,46,81,1) 100%);
}
.link-box--t-deep-pink .button--link-box {
  color: rgba(205,46,81,1);
}


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

  .link-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .link-box {
    flex-basis: 49%;
  }

  .link-box__heading {
    width: 72%;
    margin-top: 0;
  }

  .link-box__icon {
    position: relative;
    display: block;
    margin: 0 0 0 auto;
    width: 140px;
  }

  .link-box--full {
    flex-basis: 100%;
  }  

  .link-box--full .link-box__heading {
    width: 60%;
    margin-top: 1rem;
  }

  .link-box--full .link-box__content {
    width: 60%;
  }

  .link-box--full .link-box__icon {
    position: absolute;
    top: 2rem;
    right: 8%;
    width: 200px;
  }

  .link-box--landing {
    flex-basis: 49%;
  }

  .link-box--landing .link-box__icon {
    position: relative;
    display: block;
    margin: 0 auto 0 0;
    width: 90px;
    top: 0;
    left: 0;
  }

  .link-box--landing .link-box__heading {
    width: 90%;
  }



}




.footer__about {
  background-color: #C3C8C9;
  padding: 1rem 0 0 0;
  background: radial-gradient(circle, rgba(208,209,211) 0%, rgba(175,179,180) 50%, rgba(175,179,180) 100%);
}


.footer__about::after {
  display: block;
  height: 220px;
  width: 100%;
  background: url("../res/banners/drip-bg.png") 80% 100% repeat-x;
  background-size: auto 160px;
  position: relative;
  pointer-events: none;
  
}

.footer__about p {
  line-height: 1.4;
}

.footer__heading {
  color: #FFF;
  font-size: 2em;
  text-align: center;
}

.footer__logo {
  display: block;
  margin: 1rem auto 1rem auto;
  /*width: 70%;*/
  max-width: 250px;
}

.footer__logo img {
  width: 100%;
}

.footer__copy {
  margin-bottom: -5rem;
}

.footer__nav {
  margin-top: -5rem;
  position: relative;
  z-index: 14;
}

.footer__list {
  list-style: none;
  padding: 2rem 0 0 0;
  margin: 1rem 0;
}

.footer__item {
  margin-bottom: 2.2rem;
  text-align: center;
}

.button--footer {
  background-color: #AFB4B7;
  color: #FFF;
}



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

  .footer__about {
    padding-top: 0;
  }

  .footer__box {
    display: flex;
  }

  .footer__logo {
    display: block;
    margin: 2rem 0 1rem 0;
    /*width: 70%;*/
    max-width: 240px;
    flex-basis: 30%;

  }

  .footer__copy {
    /*width: 50%;*/
    float: left;
    margin-left: 2rem;
    margin-bottom: -4rem;
    flex-basis: 68%;
  }

  .footer__item {
    display: inline-block;
  }

  .footer__heading {
    text-align: left;
  }


}


.page-intro {

}


.page-intro__quote {
  border-radius: 8px;
  margin: 2rem 0;
  background-color: #dd85a6;
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}

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


  .page-intro:after {
    content: "";
    display: table;
    clear: both;
  }


  .page-intro__copy {
    float: right;
    width: 50%;
    margin-right: 10%;
  }


  .page-intro__quote {
    width: 34%;
    float: left;
    margin: 2rem 2rem 2rem 0;
  }

}

.page {
  padding-bottom: 0rem;
}

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

  .page {
    padding-bottom: 1.5rem;
  }

}

.page__heading {
  font-size: 3em;
  margin-bottom: 3rem;
}

.page__subnav {
  display: none;
}

.page__subnav--recipes {
  display: block;
}



@media screen and (min-width: 700px) {
  .page__subnav {
    display: block;
  }
}

.page__subnav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1em;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.page__subnav-item {
    margin-bottom: 0.6rem;
    color: #333;
}

.page__subnav-item a {
  border: none;
  border-radius: 6px;
  background-color: #AFB4B7;
  color: #FFF;
  padding: 0.6rem 0.8rem;
  text-decoration: none;
  font-weight: 700;
  display: block;
  width: 90%;
  max-width: 280px;
}

 .page__subnav-item.active a {
  color: #333;
}

.page__subnav-img img {
  width: 100%;
  max-width: 330px;
  display: block;
  margin: 0 auto;
}

.page__subnav-divider {
  display: block;
  width: 100%;
  margin-top: -12px;
  margin-bottom: 25px;
}

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

  .page {
    margin: 0;
    margin-top: -4rem;
    position: relative;
    z-index: 12;
  }

  .page__subnav {
    float: left;
    width: 24%;
    padding-right: 2rem;
  }

  .page__subnav-list {
    
  }

  .page__subnav-item {
    margin-bottom: 1.6rem;
    color: #333;
  }

  .page__subnav-item a {
    text-decoration: none;
    color: #333;
    background-color: transparent;
    padding: 0;
    font-weight: 300;
  }


  .page__subnav-item.active a {
    font-weight: bold;
  }

  .page__main {
    float: right;
    width: 76%;
    max-width: 730px;    
  }

  .page__main--no-nav {
    margin-left: 24%;
  }

  .page__main--full {
    float: none;
    width: auto;
    max-width: initial;
    margin-left: 0;
  }

}


/* content builder */

.page-copy {
  max-width: 800px;
  margin: 0 auto;
}

.copy-block {
  
  /*font-weight: 500;*/
}

.copy-block__text:first-child h2 {
  margin-top: 0.6rem;
}

.copy-block__text {
  font-size: 1.1em;
  line-height: 1.5;
}

.copy-block__text--footer {
  font-size: 0.8em;
}

.copy-block__text a {
  color: #333;
}

.copy-block__text ol li li {
  list-style: none;
  margin-left: -2.4rem;
  margin-top: 1rem;
}

.copy-block__text li {
  margin-bottom: 0.8rem;
}

.copy-block__text table {
  margin: 2rem 0;
  display: block;
  vertical-align: top;
  max-width: min-content;
  overflow-x: auto;
  border-collapse: collapse;
  border-spacing: 0;
  white-space: nowrap;
}




.copy-block__text thead {
  color: red;
  white-space: pre-line;
}

.copy-block__text th {
   text-align: center;
   padding: 0 0.5rem 0 0.5rem;
 }

 .copy-block__text th:first-child {
  text-align: left;
  padding-left: 0;
 }

.copy-block__text td {
  border: none;
  border-bottom: 2px solid #888;
  padding: 0.8rem 0.2rem;
  text-align: center;
}

.copy-block__text td:first-child {
  text-align: left;
}


.copy-block__text tr:last-child td {
  border-bottom:  none;
}


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

  .copy-block__text thead {
    white-space: normal;
  }

  .copy-block__text th {
    text-align: center;
    padding: 0 1rem 0 1rem;
  }

  .copy-block__text td {
    padding: 0.8rem 1rem;
  }

}

.copy-block__video {
  width: 100%;
  position: relative;
  padding-bottom: 56%;
  margin-bottom: 2rem;
}

.copy-block__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.copy-block__embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.copy-block__image {
  width: 90%;
  margin: 2em auto;
}

.copy-block__image--blog, .copy-block__image--advocate { 
  width: 100%;
}

.copy-block__image-src {
  width: 100%;
}

.copy-block__image-src--blog, .copy-block__image-src--advocate {
  border-radius: 10px;
}

.copy-block__section-title {

}


.copy-block__survey {
  width: 100%;
  max-width: 75ch;
  margin: 2rem auto;
  padding-top: 3rem;
}

.copy-block__survey-iframe {
  width: 100%;
  height: 2800px;
  
}



.pledges {
}

.pledges__main {
  width: 84%;
  margin-right: 0;
  margin-left: auto;
}

.pledges__list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
}

.pledges__item {
  border-bottom: 2px solid #888;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.pledges__label {
  font-size: 1.6em;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.pledges__text {
  flex-basis: 99%;
}

.pledges__checkbox {
  display: none;
}

.pledges__circle {
  float: left;
  width: 67px;
  height: 67px;
  margin-left: -5rem;
  margin-right: 1rem;
  background: transparent url(../res/ui/circle-unticked-grey.png) 0 0 no-repeat;
}

.pledges__label:hover {
  color: #219995
}

.pledges__label:hover .pledges__circle {
  background: transparent url(../res/ui/circle-unticked-turquoise.png) 0 0 no-repeat;
}

.pledges__checkbox:checked ~ .pledges__label {
  color: #219995;
  color: rgba(222,74,127,1);
}

.pledges__checkbox:checked ~ .pledges__label .pledges__circle {
  background: transparent url(../res/ui/circle-ticked-turquoise.png) 0 0 no-repeat;
}


.pledges__footer {
  background: radial-gradient(circle at 80% 180%, rgba(19,153,148,1) 17%, rgba(22,130,116,1) 100%, rgba(22,130,116,1) 100%);
  padding: 2rem 1rem;
  /*margin-top: -4rem;*/
  font-size: 1.2em;
  position: relative;
  margin-bottom: 0.5rem;
}


.pledges__footer:before {
    content: " ";
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

.pledges__field {
  width: 300px;
  margin: 0 auto 1rem auto;
}

.pledges__field--align-left {
  margin: 0 auto 1rem 0;
}

.pledges__field--checkbox {
  width: 90%;
  max-width: 600px;
  display: flex;
  align-items: baseline;
}

.pledges__input-label {
  color: #FFF;
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
  width: 100%;
}

.pledges__field--align-left .pledges__input-label {
  text-align: left;
}

.pledges__input-label-check {
 color: #FFF;
 font-size: 0.8em;
 padding-left: 0.6rem;
display: block;
line-height: 1.4;
}

.pledges__input {
  border: none;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  color: #333;
  display: block;
  width: 100%;
}

.pledges__submit {
  display: block;
  margin: 2rem auto 0 auto;
  width: 140px;
  padding: 0.6rem;
  background-color: rgba(22,130,116,1);
  border: 0;
  border-radius: 8px;
  color: #FFF;

}

.pledges__cta {
  font-family: museo-sans-rounded, sans-serif;
  font-weight: 1000;
  text-align: center;
  color: #FFF;
  font-size: 2em;
}

.partners {
  background-color: #E6E7E9;
  padding: 2rem 0;
  margin-bottom: 0.5rem;
  font-size: 1.2em;
  font-weight: 500;
}

.partners__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.partners__item {
  display: inline-block;
  text-align: center;
  margin: 0.4rem;
}

.partners__logo {
  width: 220px;
}

.partners__cta {
  text-align: center;
  padding-top: 1rem;
}


.social {

}

.social--expanded {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.social__intro {
  text-align: center;
  font-size:  1.1rem;
}

.social__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social__item {
  display: inline-block;
  margin-right: 0.4rem;
}

.social__item-expanded {
  margin-right:  1rem;
}

.social__item:last-child {
  margin-right: 0;
}

.social__item a {
  display: block;
}

.social__icon {
  width: 50px;
  display: block;
}

.social__icon--expanded {
  width: initial;
  height: 60px;
  object-fit: contain;
}


.detail {
  margin-bottom: 2rem;
}

.detail__main p {
    line-height: 1.4;
}

.detail__main a {
  color: #333;
}

.detail__main li {
  margin-bottom: 0.8rem;
}

.detail__intro {

}


.detail__info {

}

.detail__info a {
  text-decoration: none;
  color: inherit;
  padding-top: 0.7rem;
  display: inline-block;
}

.detail__icon {
  float: left;
  width: 42px;
  margin-top: -0.7rem;
  margin-right: 0.5rem;
}


.detail__main {
    width: 62%;
    float: left;
    font-size: 1.2em;
}




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


  .detail {
    min-height: 9rem;
    margin-bottom: 2rem;
  }

  .detail__main {
    width: 62%;
    float: left;
    font-size: 1.2em;
  }

  .detail__heading {
    margin-top: 0;
  }

  .detail__intro {
    width: 24%;
    float: left;
  }

  .detail__logo {
    width: 200px;
  }

  .detail__info {

  }

}

.download {
  margin-bottom: 3rem;
}

.download__title {
  color: #bf080b;
  margin-bottom: 1rem;
}

.download__text {
  /*margin-top: 0;*/
}

.downloads__text {
 color: rgba(22,130,116,1);
 font-weight: 500;
}


.form-errors {
  padding: 0;
  list-style: none;
  font-size: 1rem;
}

.form-errors__item {
  color: red;
}

.round-badge {
  display: inline-block;
  width: 100px;
  height:100px;
  background: rgb(189,53,40);
  background: radial-gradient(circle, rgba(189,53,40,1) 25%, rgba(142,40,30,1) 61%);
  color: #FFF;
  border-radius: 100%;
  position: relative;
  font-family: museo-sans-rounded;
  margin-bottom: 20px;
}

.round-badge__inner {
  position: absolute;
  top: 6%;
  left: 6%;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid #FFF;
  width: 88%;
  height: 88%;
  text-align: center;
  padding-top: 6px;
}

.round-badge__val {
  font-size: 3em;
}

.round-badge__val--3-chars {
  font-size: 1.6em;
  line-height: 59px;
}

.round-badge__label {
  text-transform: uppercase;
}

.round-badge__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.8em;
  letter-spacing: 4px;
  font-family: museo-sans-rounded;
  text-transform: uppercase;

}

.round-badge__svg text {
  fill: #FFF;
}


.recipe {}

.recipe__img-silo {
  float: left;
  margin-bottom: 1rem;
}

.recipe__img {
  max-width: 100%;
}



.recipe__ingredients {
  clear: both;
}

.recipe__list {
  padding: 0 0 0 1.2em;
}

.recipe__item {
  margin-bottom: 0.6em;
  line-height: 1.3;
}


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

  .recipe__info {
    float: right;
    width: 110px;
  }

  .recipe__side-image-silo {
    float: right;
    width: 188px;
  }

  .recipe__side-image {
    width: 100%;
  }


}


.strip {
  background-color: #84b354;
  color: #fff;
  margin-top: 1.4rem;
  margin-bottom: 2rem;
  position: relative;
}

.strip--food-book {
  background-color: #f48190;
}

.strip--food-book-2 {
  background-color: #ff798e;
}

.strip--feed-less {
  background-color: #1a4554;
  background-repeat: no-repeat;
  background-size: cover;
  background-image:  url(../img/feed-for-less-bg.jpg);
}



.strip--plain {
  color: #000;
  background-color: #fff;
}

.strip__bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.strip__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip__content {
  padding-top: 2.5rem;
}

.strip__content--home {
  padding-top: 1rem;
}

.strip__copy {
  position: relative;
  z-index: 10;
}

.strip__copy p {
  line-height: 1.4;
}

.strip__copy--no-offset {
  padding-left: 0;
}

.strip__title {
  font-size: 2.2rem;
}

.strip__title--home {
  font-size: 2.8rem;
}

.strip__img-silo {
  position: relative;
  z-index: 5;
}

.strip__img-silo--feed-less {
  padding: 2rem 0;
}

.strip__img-silo--halo {
  background: radial-gradient(circle, rgba(255,255,255,0.7) 1%, rgba(255,255,255,0) 50%);
}

.strip__img-silo--home {
  
}

.strip__img {
  width: 100%;
  max-width: 460px;
  display: block;
  margin: 0 auto;
}

.strip__img--home {
  max-width: 560px;
  margin-left: -80px;
}

.strip__img--feed-less {
  width: 80%;
  max-width: 280px;
}



.strip__img-plain {
  width: 117%;
}

.strip__cta {
  margin-top: 2.2rem;
}

.strip__card {
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
}

.strip__card-copy {
  order: 2;
  width: 320px;
  font-weight: bold;
  line-height: 1.4;
}

.strip__card-img-silo {
  order: 1;
  position: relative;
  height: 150px;
  width: 120px;
}

.strip__card-img {
  position: absolute;
  left: -69px;
  top: -37px;
  pointer-events: none;
}

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

  .strip__content {
    display: flex;
  }

  .strip__copy {
    width: 50%;
    padding-left: 2rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 10;
  }

  .strip__img-silo {
    width: 50%;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
  }

  .strip__img {
    margin-top: auto;
  }

  .strip__img--feed-less {
    width: 270px;
    margin: 0 0 0 2.4rem;
  }



}

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

    .strip__copy {
      padding-left: 4rem;
    }

}


.simple {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 2rem 0;
}


.simple--offset {
  padding-left: 0;
  width: 96%;
}

.simple__title {
  font-size: 2.2rem;
}

.simple__img {
  display: block;
  width: 80%;
  margin: 1.5rem auto 0 auto;
}

.simple p {
  line-height: 1.4;
}


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

  .simple {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding: 3rem 0;
  }

  .simple--offset {
    padding-left: 20%;
    width: 80%;
  }


  .simple__img {
    display: block;
    width: 110%;
    margin-right: initial;
    margin-left: -5%;
    margin-top: 1.5rem;
  }


}

.breadcrumb {

}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  margin-left: -1rem;
}

.breadcrumb__item {
  padding: 0 1rem;
  border-right: 1px solid #fff;
}

.breadcrumb__item:last-child {
  border-right: none;

}


.accordion {
}
.accordion h2 {
  margin: -1px 0 0;
  border: 1px solid #6505cc;
}
.accordion p {
  margin: 0;
}
.accordion__button {
  font-family: museo-sans-rounded, sans-serif;
  font-weight: 1000;
  font-size: 1.6rem;
  border: none;
  border-radius: 8px;
  display: block;
  margin: 0.5rem 0 1rem 0;
  padding: 1rem 1rem 1rem 4.5rem;
  width: 100%;
  color: #FFF;
  text-align: left;
  background: rgba(96,165,17,1);
  position: relative;
}
.accordion__button:focus, .accordion__button:hover {
  /*background: #0055a5;*/
}
.accordion__button:focus::after, .accordion__button:hover::after {
  
}

.accordion__icon {
  position: absolute;
  left: 1rem;
  top: 8px;
  width: 45px;
}

.accordion__icon--expanded {
  display: none;
}

.accordion__button.expanded .accordion__icon {
  display: none;
}

.accordion__button.expanded .accordion__icon--expanded {
  display: block;
}

.accordion__button::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 0.65rem;
}

.accordion__section {
  max-height: 0vh;
  overflow: hidden;
  padding: 0;
  line-height: 1.6;
}
.accordion__section.open {
  max-height: 100vh;
  overflow: auto;
  padding: 1rem;
  margin-bottom: 1rem;
  visibility: visible;
}

.blog-listing {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 4rem;
}

.blog-listing__article {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.blog-listing__content {
  line-height: 1.4;
}

.blog-listing__title {
  font-size: 1.8rem;
  min-height: 2.4em;
}

.blog-listing__title a {
  text-decoration: none;
}

.blog-listing__image {
  width: 100%;
}

.blog-listing__image-silo {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 56.2%;
}

.blog-listing__image-silo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
}

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

  .blog-listing__article {
    width: 48%;
  }

}


.page-nav-link {
  font-size:  1.3em;
  margin-top: 2em;
  margin-bottom: 2em;
}

.button--outline {
  border: 1px solid #bf080b;
}

.button-list {
  list-style: none;
  display:  flex;
  flex-wrap:  wrap;
  gap: 1.4em;
  justify-content: center;
}

.button-list li {
  border: none;
  border-radius: 3px;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2em;
  color: #db85a6;
}


.recipe-cards {
  margin-bottom: 5rem;
  position: relative;
  color: rgba(117,60,145,1);
}

.button--recipes {
  background-color: rgba(117,60,145,1);
  color: #fff;
}


.recipe-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.1rem;
}


@supports (width: min(260px, 100%)) {
  .recipe-cards__grid {
   grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  }
}

.recipe-cards__category {
  color: #111;
  font-size: 1.7rem;
  margin: 0 0 2rem 0;
}

.recipe-cards__title {
  margin: 0;
  color: #222;
  font-family: museo, serif; 
  font-weight: 300;
}

.recipe-cards__group {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.recipe-cards__group:nth-child(even) {
  background-color: #F5F5F7;
}



.recipe-cards__item {
  width: 100%; 
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.recipe-cards__pic {
  width: 100%;
}

.recipe-cards__pic img {
  width: 100%;
  border-radius: 8px;
}

.recipe-cards__footer {
  margin-top: auto;
}

.recipe-cards__footer .button {
  display: inline-block;
}

.video-boxes {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}

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

  .video-boxes {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
  }

}


.video-boxes__silo {
  
}

.video-boxes__poster {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 9px;
}

.video-boxes__link {
  display: block;
}

.video-boxes__link img {
  width: 100%;
}

.video-boxes__poster iframe {
  position: absolute;
  transition: opacity 200ms ease-in;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-iframe-loaded iframe {
  opacity: 1;
  transition: opacity 200ms ease-in;
}

.js-iframe-loaded img {
  opacity: 0;
  transition: opacity 200ms ease-out;
}


.simple-banner {
  padding: 2rem 0;
  background-color: #F5F5F7;
}

.simple-banner--embed {
  padding: 0;
  background-color: transparent;
}

.simple-banner__title {
  color: #111;
  font-size: 1.7rem;
  margin: 0 0 2rem 0;
}


.materials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 3rem;
}

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

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

}

.materials__item {
  display: flex;
  gap: 1rem;
}

.materials__thumb {
  min-width: 130px;
}

.materials__copy {
 
}

.materials__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
}

.materials__links > * + * {
  margin-top: 0.3rem;
  margin-block-start: 0.5rem;
}

.materials__all {
  padding: 2rem 0 2rem 0;
}

.materials__cats {
  display: flex;
  flex-direction: row;
  margin-bottom: -0.5rem;
  gap: 0.5rem;
}

.materials__cat {
  
}

.materials__cat span {
  width: 30px;
  height: 30px;
  border: 2px solid #818285;
  color: #818285;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  line-height: 1;
  font-weight: bold;
  padding-top: 2px;
}

.materials__cats--top {
  gap: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.materials__cats--top .materials__cat span {
  color: #fff;
  border: 2px solid #fff;
}


.thanks {
  font-weight: 1000;
  font-size: 1.2em;
}


.copy-block__text--advocate h3 {
  color: #114EA6;
  font-family: museo;
  font-size: 2.5rem;
  max-width: 20ch;
  line-height: 1.2;
}

.button--advocate {
  background-color: rgba(34,120,197,1);
  color: #fff;
}

.advocates {
  margin-bottom: 4rem;
}

.advocates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 3rem;
}

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

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

}

.advocates__mini-banner {
  background-color: rgba(34,120,197,1);
  color: #fff;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 1rem;
}

.advocates__star {
  position: absolute;
  right: -12px;
  top: -20px;
}

.advocates__star img {
  height: 100%;
}

.advocates__quote {
  max-width: 16ch;
  font-size: 2rem;
  position: relative;
  z-index: 10;
  margin: 0;
}

.copy-block--factsheets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "intro intro" "col1 col2";
  width: 100%;
}

.copy-block__section--factsheets:first-child {
  grid-area: intro;
}


.copy-block__section--factsheets:nth-child(2) {
  grid-area: col1;
}

.copy-block__section--factsheets:nth-child(3) {
  grid-area: col2;
}

.flow-item {
  margin-top: 1.5rem;
}

.flow-item:first-child {
  margin-top: 0;
}


.pdf-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill,200px);
  gap: 2rem;
}

.pdf-cards__card {
  display: flex;
  flex-direction: column;
}

.pdf-cards__card .button {
  margin-top: auto;
  text-align: center;
  display: inline-block;
}
