/*!
Theme Name: Prairie
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: prairie
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Prairie is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Imports
-------------------------------------------- */

@import "./css/reset.css";
@import "./css/normalize.css";
@import "./css/utilities.css";

/* Fonts
-------------------------------------------- */

@font-face {
  font-family: "century_schoolbook_proregular";
  src: url("./fonts/centuryschoolbookproregular-webfont.woff2") format("woff2"),
    url("./fonts/centuryschoolbookproregular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "century_schoolbook_proregularitalic";
  src: url("./fonts/centuryschoolbookproregularitalic-webfont.woff2")
      format("woff2"),
    url("./fonts/centuryschoolbookproregularitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "century_schoolbook_probold";
  src: url("./fonts/centuryschoolbookprobold-webfont.woff2") format("woff2"),
    url("./fonts/centuryschoolbookprobold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* CSS Variables
-------------------------------------------- */

:root {
  --blue-light: #66afe2;
  --blue-med: #17abe2;
  --blue-dark: #0371ad;
  --cream: #f2e8d3;
  --brown-light: #c7bdae;
  --brown-med: #6f6b61;
  --brown-dark: #443a29;
  --gray-dark: #707070;
  --orange: #ec672c;
  --white: #fff;
}

/* Base
-------------------------------------------- */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  color: var(--brown-med);
  font-family: "century_schoolbook_proregular";
  font-size: 1.5rem;
  line-height: 1.4;
}

:target:before {
  content: "";
  display: block;
  height: 160px;
  margin: -160px 0 0;
}

/* Typography
-------------------------------------------- */

a {
  color: currentColor;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--orange);
  text-decoration-color: var(--orange);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover,
a:active,
a:focus {
  color: var(--orange);
}

p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-family: "brothers";
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
p:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1,
.h1 {
  font-size: 3.6rem;
}
h2,
.h2 {
  font-size: 3.2rem;
}
h3,
.h3 {
  font-family: "prohibition", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
h4,
.h4 {
  font-size: 2rem;
}
h5,
.h5 {
  font-size: 1.8rem;
}
h6,
.h6 {
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 5.5rem;
  }
  h2,
  .h2 {
    font-size: 4.5rem;
  }
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

/* Blockquote */

blockquote {
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 0.5rem solid #f1f1f1;
}

/* Horizontal Rules */

hr {
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* Helpers
-------------------------------------------- */

/* Colors */

.white {
  color: var(--white);
}
.orange {
  color: var(--orange);
}

/* Background Colors */

.bg-white {
  background-color: var(--white);
}
.bg-cream {
  background-color: var(--cream);
}
.bg-brown-med {
  background-color: var(--brown-med);
  color: var(--cream);
}
.bg-brown-med h1,
.bg-brown-med h2,
.bg-brown-med h3,
.bg-brown-med h4,
.bg-brown-med h5,
.bg-brown-med h6 {
  color: var(--cream);
}

/* Spacing */

.mt-xs {
  margin-top: 1rem;
}
.mt-sm {
  margin-top: 2rem;
}
.mt-md {
  margin-top: 4rem;
}
.mt-lg {
  margin-top: 6rem;
}

.mb-xs {
  margin-bottom: 1rem;
}
.mb-sm {
  margin-bottom: 2rem;
}
.mb-md {
  margin-bottom: 4rem;
}
.mb-lg {
  margin-bottom: 6rem;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/* Buttons
-------------------------------------------- */

.btn {
  display: inline-block;
  margin: 9px;
  padding: 1rem 4rem;
  border: 0;
  outline: 1px solid var(--orange);
  outline-offset: 8px;
  font-family: "brothers";
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn:hover,
.btn:active,
.btn:focus {
  text-decoration: none;
}

.btn--primary {
  background-color: var(--cream);
}
.btn--primary:hover,
.btn--primary:active,
.btn--primary:focus {
  background-color: var(--orange);
  color: var(--cream);
  cursor: pointer;
}

.btn--secondary {
  background-color: var(--white);
}
.btn--secondary:hover,
.btn--secondary:active,
.btn--secondary:focus {
  background-color: var(--orange);
  color: var(--cream);
  cursor: pointer;
}

/* Sizing */

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
}

.btn--lg {
  padding: 1.5rem 3rem;
  font-size: 2rem;
}

.btn--block {
  display: block;
}

/* Forms
-------------------------------------------- */

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="file"],
textarea,
select {
  width: 100%;
  height: 4rem;
  padding: 0.5rem 1rem;
  background-color: var(--cream);
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 20rem;
}

select {
  background-image: url("./img/select-arrows.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 50%;
}

label {
  margin-bottom: 0.5rem;
  font-family: "prohibition", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

input[type="submit"],
button[type="submit"] {
  margin: 9px;
  padding: 1rem 4rem;
  background-color: var(--cream);
  border: 0;
  outline: 1px solid var(--orange);
  outline-offset: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--brown-med);
  font-family: "brothers";
  font-size: 1.5rem;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus,
button[type="submit"]:hover,
button[type="submit"]:active,
button[type="submit"]:focus {
  background-color: var(--orange);
  color: var(--cream);
  cursor: pointer;
}

input[type="radio"] {
  position: relative;
  top: -1px;
  width: 14px;
  height: 14px;
  background-color: var(--white);
  border: 2px solid var(--orange);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 1rem;
}
input[type="radio"]:checked {
  background-color: var(--orange);
  outline: 2px solid var(--white);
  outline-offset: -4px;
}

input[type="checkbox"] {
  position: relative;
  top: -1px;
  width: 14px;
  height: 14px;
  background-color: var(--white);
  border: 2px solid var(--orange);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 1rem;
}
input[type="checkbox"]:checked {
  background-color: var(--orange);
  outline: 2px solid var(--white);
  outline-offset: -4px;
}

.form-group {
  padding: 10px 0;
}

/* Layout
-------------------------------------------- */

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

.container__narrow {
  max-width: 840px;
}

.container__narrow--center {
  margin: 0 auto;
}

@media (min-width: 992px) {
  .container__half {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6rem;
  }
}

/* Section */

section {
  padding: 6rem 0;
}

.section-top {
  padding: 16rem 0 4rem 0;
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(var(--cream)),
    color-stop(22rem, var(--cream)),
    color-stop(22rem, var(--white)),
    to(var(--white))
  );
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--cream) 22rem,
    var(--white) 22rem,
    var(--white) 100%
  );
}
@media (min-width: 992px) {
  .section-top {
    padding: 19rem 0 4rem 0;
    background: -webkit-gradient(
      linear,
      left top, left bottom,
      from(var(--cream)),
      color-stop(28rem, var(--cream)),
      color-stop(28rem, var(--white)),
      to(var(--white))
    );
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      var(--cream) 28rem,
      var(--white) 28rem,
      var(--white) 100%
    );
  }
}

/* Header
-------------------------------------------- */

.header {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background-color: rgba(255, 255, 255, 0);
}
@media screen and (min-width: 601px) {
  .admin-bar .header {
    top: 46px;
  }
}
@media screen and (min-width: 783px) {
  .admin-bar .header {
    top: 32px;
  }
}
.header.is-active {
  background-color: rgba(255, 255, 255, 1);
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo img {
  height: 8rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header.is-active .header__logo img {
  height: 6rem;
}
@media (min-width: 992px) {
  .header .header__logo img {
    height: 11rem;
  }
  .header.is-active .header__logo img {
    height: 6rem;
  }
}

/* Footer
-------------------------------------------- */

.footer {
  padding: 4rem 0;
}
.footer p {
  margin: 0;
  font-size: 1rem;
}

.footer-social {
  font-size: 0;
  text-decoration: none;
}
.footer-social__icon {
  margin-right: 1rem;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer-social__icon:hover,
.footer-social__icon:active,
.footer-social__icon:focus {
  opacity: 0.8;
}

@media (min-width: 992px) {
  .footer__inner {
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-gap: 10rem;
  }
}

/* Nav
-------------------------------------------- */

.menu-main-menu-container {
  position: absolute;
  z-index: 99;
  top: 0;
  right: -2rem;
  width: 30rem;
  height: 100vh;
  overflow: scroll;
  padding: 11rem 4rem 4rem 4rem;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 8px rgb(0 0 0 / 15%);
  box-shadow: 0 0 8px rgb(0 0 0 / 15%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.menu-main-menu-container.is-active {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.menu-main-menu-container-toggle {
  position: relative;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 8px rgb(0 0 0 / 15%);
  box-shadow: 0 0 8px rgb(0 0 0 / 15%);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.menu-main-menu-container-toggle-inner {
  position: relative;
  display: block;
  width: 25px;
  height: 32px;
}
.menu-main-menu-container-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 2.5rem;
  background: var(--gray-dark);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu-main-menu-container-toggle span:nth-child(1) {
  top: 8px;
}
.menu-main-menu-container-toggle span:nth-child(2),
.menu-main-menu-container-toggle span:nth-child(3) {
  top: 15px;
}
.menu-main-menu-container-toggle span:nth-child(4) {
  top: 22px;
}
.menu-main-menu-container-toggle.is-active span:nth-child(1) {
  top: 15px;
  width: 0%;
  left: 50%;
}
.menu-main-menu-container-toggle.is-active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-main-menu-container-toggle.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-main-menu-container-toggle.is-active span:nth-child(4) {
  top: 15px;
  width: 0%;
  left: 50%;
}

.menu-main-menu-container .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-main-menu-container .menu > .menu-item {
  margin-bottom: 3rem;
}
.menu-main-menu-container .menu-item > a {
  display: inline-block;
  color: var(--brown-med);
  font-family: "prohibition", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 1px;
}
.menu-main-menu-container .menu-item > a:hover,
.menu-main-menu-container .menu-item.is-active > a {
  color: var(--orange);
}
.menu-main-menu-container .menu > .menu-item:last-of-type > a {
  padding: 1rem 2rem;
  background-color: var(--orange);
  color: var(--cream);
  font-family: "brothers";
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-main-menu-container .menu > .menu-item:last-of-type > a:hover {
  background-color: var(--brown-med);
  color: var(--cream);
}
.menu-main-menu-container .menu-item .sub-menu {
  margin: 0 0 0 2rem;
  padding: 0;
  list-style: none;
}
.menu-main-menu-container .menu-item .sub-menu .menu-item > a {
  display: block;
  margin: 0.5rem 0;
  padding: 0;
  color: var(--brown-med);
  font-family: "prohibition", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.menu-main-menu-container .menu-item .sub-menu .menu-item > a:hover {
  color: var(--orange);
}

@media (min-width: 992px) {
  .menu-main-menu-container {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu-main-menu-container-toggle {
    display: none;
  }
  .menu-main-menu-container .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu-main-menu-container .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .menu-main-menu-container .menu > .menu-item {
    position: relative;
    margin-bottom: 0;
  }
  .menu-main-menu-container .menu > .menu-item > a {
    display: block;
    min-height: 4.2rem;
    padding: 1rem 2rem;
    background: transparent;
    text-decoration: none;
    font-size: 1.8rem;
  }
  .menu-main-menu-container .menu-item.is-active > a {
    color: var(--brown-med);
  }
  .menu-main-menu-container .menu-item:hover a {
    background-color: var(--cream);
    color: var(--orange);
  }
  .menu-main-menu-container .menu-item.is-active > a:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 7px;
    background-color: var(--cream);
  }
  .menu-main-menu-container .menu-item:last-of-type > a {
    padding: 1.1rem 2rem 0.9rem 2rem;
  }
  .menu-main-menu-container .menu-item:last-of-type > a {
    margin-left: 2rem;
  }
  .menu-main-menu-container .menu-item.is-active:last-of-type > a:after {
    display: none;
  }
  .menu-main-menu-container .menu-item .sub-menu {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0;
    padding: 1.2rem 2rem;
    background-color: var(--cream);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .menu-main-menu-container .menu-item .sub-menu > .menu-item {
    margin-bottom: 1rem;
  }
}

/* Footer Nav */

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}
.footer-nav__item {
  padding: 0 1rem;
  border-left: 1px solid var(--cream);
  line-height: 1;
}
.footer-nav__item:first-child {
  padding-left: 0;
  border-left: 0;
}
.footer-nav__link {
  font-size: 1.3rem;
}
@media (min-width: 992px) {
  .footer-nav__link {
    font-size: 1.6rem;
  }
}

/* Misc
-------------------------------------------- */

/* Flickity */

.flickity-button {
  background: var(--white);
}
.flickity-button:hover {
  background: var(--brown-med);
}
.flickity-prev-next-button {
  width: 23px;
  height: 23px;
}
.flickity-prev-next-button.previous {
  left: 0;
}
.flickity-prev-next-button.next {
  right: 0;
}
.flickity-button-icon {
  fill: var(--cream);
}
.flickity-button:disabled {
  opacity: 0.6;
}

/* List Large */

.list-lg {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 2rem;
}
.list-lg__title {
  margin: 0;
}
.list-lg__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-lg__item {
  margin-bottom: 1rem;
  font-family: "prohibition", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 1.1;
}

/* Icon Button */

.icon-btn-stack__icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .icon-btn-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}

.icon-btn-stack {
  text-align: center;
}

.icon-btn-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2rem;
}
.icon-btn-inline__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  margin-right: 2rem;
}
.icon-btn-inline .btn {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* Templates
-------------------------------------------- */

/* Home */

.home-hero {
  position: relative;
}
.home-hero__block {
  padding: 16rem 2rem 6rem 2rem;
  text-align: center;
}
.home-hero__video {
  position: relative;
  height: 34rem;
}
.home-hero__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-hero__accent {
  display: none;
}

.home-products__content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.home-products__buttons > div {
  margin-top: 3rem;
}
.home-products__categories {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.home-products__category {
  position: relative;
  display: block;
  margin-bottom: 4rem;
  padding: 2rem;
  text-align: center;
}
.home-products__category:before {
  position: absolute;
  z-index: 1;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14rem;
  background-color: var(--cream);
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}
.home-products__category-image {
  position: relative;
  z-index: 2;
}
.home-products__category-title {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.home-products__category:hover:before,
.home-products__category:active:before,
.home-products__category:focus:before {
  height: 100%;
}

.home-recipies {
  margin-top: 4rem;
}
.home-recipes__explainer {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.home-recipes__difficulties {
  margin-bottom: 4rem;
}
.home-recipes__difficulty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0;
  font-family: "century_schoolbook_proregularitalic";
}
.home-recipes__difficulty img {
  margin-right: 1rem;
}
.home-recipes__rich-text {
  margin-top: -8rem;
}
.home-recipes__recipe {
  margin-bottom: 4rem;
}
.home-recipes__recipe:last-of-type {
  margin-bottom: 0;
}
.home-recipes__recipe-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home-sustainability {
  text-align: center;
}
.home-sustainability__heading {
  position: relative;
  max-width: 50rem;
  margin: 0 auto -1.5rem auto;
}
.home-sustainability__content {
  margin-top: 2rem;
}

.home-awards__awards {
  margin-bottom: 4rem;
  text-align: center;
}
.home-awards__awards-title {
  position: relative;
  margin-bottom: 3rem;
}
.home-awards__awards-title:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--cream);
}
.home-awards__awards-title span {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  background-color: var(--white);
}
.home-awards__awards-awards {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.home-awards__awards-awards img {
  margin: 0 auto;
}

@media (min-width: 576px) {
  .home-hero__video {
    height: 50rem;
  }
  .home-recipes__recipes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
  }
  .home-recipes__recipe {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .home-hero {
    display: grid;
    grid-template-columns: 1fr 16rem 50%;
    grid-template-rows: 16rem 1fr 16rem;
  }
  .home-hero__block {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    padding: 19rem 0 6rem 0;
    text-align: left;
  }
  .home-hero__video {
    grid-column-start: 2;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: -1;
  }
  .home-hero__video {
    height: auto;
  }
  .home-hero__accent {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  .home-hero__content {
    width: 60rem;
    max-width: 100%;
    padding: 0 2rem;
  }
  .home-products__categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
  }
  .home-products__category {
    margin-bottom: 0;
  }
  .home-products__category-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-recipes__inner {
    display: grid;
    grid-template-columns: 35rem 1fr;
    grid-gap: 4rem;
  }
  .home-products__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
    max-width: 54rem;
    margin: 0 auto;
  }
  .home-recipes__rich-text {
    margin-top: -9rem;
  }
  .home-recipes__difficulties {
    margin-bottom: 0;
  }
  .home-sustainability__heading {
    max-width: 70rem;
    margin: 0 auto -3rem auto;
  }
  .home-sustainability__content {
    position: relative;
    width: 54rem;
    max-width: calc(100% - 4rem);
    margin: -12rem auto 0 auto;
    padding: 3rem 4rem;
    background-color: var(--white);
  }
  .home-awards__awards {
    margin-bottom: 0;
  }
  .home-awards__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8rem;
  }
}

/* Products */

.products-hero {
  padding-left: 2rem;
  padding-right: 2rem;
}
.products-hero__image {
  position: relative;
  margin-bottom: 10rem;
}
.products-hero__image-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.products-hero__accent {
  display: none;
}

.products {
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(var(--white)),
    color-stop(11rem, var(--white)),
    color-stop(11rem, var(--cream)),
    to(var(--cream))
  );
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    var(--white) 11rem,
    var(--cream) 11rem,
    var(--cream) 100%
  );
}
.products__product-details {
  text-align: center;
}
.products__product-details h2 {
  min-height: 98px;
  margin-bottom: 0;
}
.products__product-details p:first-of-type {
  margin-top: 0;
}
.products__back-to-top {
  display: block;
  margin-top: 4rem;
  text-align: center;
}
.products__back-to-top span {
  display: block;
  font-family: "brothers";
  font-weight: 700;
  text-transform: uppercase;
}
.products__product-products {
  text-align: center;
}
.products__product-product {
  max-width: 28rem;
  margin: 0 auto 4rem auto;
}
.products__product-bottle-image {
  height: 40rem;
  margin-top: 2rem;
}
.product__category {
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .products-hero {
    padding-left: 0;
    padding-right: 0;
  }
  .products-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .products-hero__content {
    max-width: 60rem;
    justify-self: end;
    padding-left: 2rem;
    padding-right: 4rem;
  }
  .products-hero__image {
    margin-bottom: 0;
  }
  .products-hero__image-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .products-hero__image-badge {
    top: 2rem;
    bottom: auto;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .products-hero__accent {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  .products {
    margin-top: 2rem;
    background: -webkit-gradient(
      linear,
      left top, left bottom,
      from(var(--white)),
      color-stop(13rem, var(--white)),
      color-stop(13rem, var(--cream)),
      to(var(--cream))
    );
    background: linear-gradient(
      180deg,
      var(--white) 0%,
      var(--white) 13rem,
      var(--cream) 13rem,
      var(--cream) 100%
    );
  }
  .products__product-inner {
    display: grid;
    grid-template-columns: 30rem 1fr;
    grid-gap: 4rem;
  }
  .products__product-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    grid-gap: 2rem;
  }
  .products__product-product {
    max-width: 28rem;
    margin: 0 auto;
  }
  .products__product-bottle-image {
    margin-top: 0;
  }

  .products__product-details {
    text-align: left;
  }
  .products__product-details p:first-of-type {
    margin-top: 2rem;
  }
  .products__back-to-top {
    display: inline-block;
    text-align: left;
  }

  .product__categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
  }
  .product__category {
    margin-bottom: 0;
  }
  .product__category-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Product */

.product__image {
  margin-bottom: 2rem;
  text-align: center;
}
.product__image img {
  height: 30rem;
}

.product__details h3 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream);
}

.product__badges {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  grid-gap: 1rem;
}
.product__badge img {
  width: 60px;
  height: 60px;
}

.product__awards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  grid-gap: 2rem;
  justify-items: start;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.product__award {
  text-align: center;
}
.product__award-image {
  margin-bottom: 1rem;
}
.product__award-title {
  font-family: "century_schoolbook_probold";
  font-size: 1.2rem;
}
.product__award-subtitle {
  font-size: 1.2rem;
}

.product__reviews {
  margin-bottom: 2rem;
  padding: 2rem;
  text-align: center;
}
.product__reviews-item {
  width: 100%;
  padding: 0 4rem;
  outline: none;
}
.product__reviews-item-info {
  font-family: "century_schoolbook_probolditalic";
}
.product__reviews .flickity-prev-next-button {
  margin-top: -2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product__reviews-item-rating path {
  fill: var(--white);
}
.product__reviews-item-rating--1 path:nth-of-type(1) {
  fill: var(--orange);
}
.product__reviews-item-rating--2 path:nth-of-type(1),
.product__reviews-item-rating--2 path:nth-of-type(2) {
  fill: var(--orange);
}
.product__reviews-item-rating--3 path:nth-of-type(1),
.product__reviews-item-rating--3 path:nth-of-type(2),
.product__reviews-item-rating--3 path:nth-of-type(3) {
  fill: var(--orange);
}
.product__reviews-item-rating--4 path:nth-of-type(1),
.product__reviews-item-rating--4 path:nth-of-type(2),
.product__reviews-item-rating--4 path:nth-of-type(3),
.product__reviews-item-rating--4 path:nth-of-type(4) {
  fill: var(--orange);
}
.product__reviews-item-rating--5 path:nth-of-type(1),
.product__reviews-item-rating--5 path:nth-of-type(2),
.product__reviews-item-rating--5 path:nth-of-type(3),
.product__reviews-item-rating--5 path:nth-of-type(4),
.product__reviews-item-rating--5 path:nth-of-type(5) {
  fill: var(--orange);
}

@media (min-width: 992px) {
  .product__inner {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: 15% 1fr 1fr;
    grid-gap: 4rem;
  }
  .product__image {
    margin-bottom: 0;
  }
  .product__image img {
    height: auto;
  }
  .product__extras {
    margin-top: 13rem;
  }
}

/* Sustainability */

.sustainability-hero {
  padding-left: 2rem;
  padding-right: 2rem;
}
.sustainability-hero__content {
  padding-bottom: 2rem;
}
.sustainability-hero__image {
  position: relative;
}
.sustainability-hero__image-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.sustainability-hero__icon {
  margin: 2rem 0;
  text-align: center;
}
.sustainability-hero__icon img {
  display: block;
  margin: 0 auto 2rem auto;
}
.sustainability-hero__accent {
  display: none;
}

.sustainability-callout {
  text-align: center;
}
.sustainability-callout__heading {
  position: relative;
  max-width: 50rem;
  margin: 0 auto -1.5rem auto;
}
.sustainability-callout__content {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.sustainability-callout__columns {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 2rem;
}

.sustainability-farmers__heading {
  margin-bottom: 3rem;
}
.sustainability-farmers__alt-content {
  margin: 4rem 0;
}
.sustainability-farmers__alt-content-block {
  padding: 2rem;
}

.sustainability-process {
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(var(--white)),
    color-stop(6rem, var(--white)),
    color-stop(6rem, var(--cream)),
    to(var(--cream))
  );
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    var(--white) 6rem,
    var(--cream) 6rem,
    var(--cream) 100%
  );
}
.sustainability-process__heading {
  max-width: 70rem;
  margin: 0 auto 2rem auto;
  text-align: center;
}
.sustainability-process__rich-text {
  max-width: 54rem;
  margin: 0 auto;
}
.sustainability-process__image {
  display: block;
  margin: 0 auto;
}
.sustainability-process__step {
  margin-top: 4rem;
  text-align: center;
}
.sustainability-process__step-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin: 0 auto;
  border: 4px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: "brothers";
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.sustainability-outro__content {
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .sustainability-farmers__alt-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sustainability-farmers__alt-content:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .sustainability-farmers__alt-content-block {
    padding: 4rem;
  }
  .sustainability-farmers__alt-content:nth-of-type(odd)
    .sustainability-farmers__alt-content-block {
    margin-left: -8rem;
  }
  .sustainability-farmers__alt-content:nth-of-type(even)
    .sustainability-farmers__alt-content-block {
    margin-right: -8rem;
  }
  .sustainability-farmers__alt-content-image {
    max-width: 560px;
  }
  .sustainability-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem;
  }
}

@media (min-width: 992px) {
  .sustainability-hero {
    padding-left: 0;
    padding-right: 0;
  }
  .sustainability-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sustainability-hero__content {
    max-width: 60rem;
    justify-self: end;
    padding-left: 2rem;
    padding-right: 4rem;
  }
  .sustainability-hero__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
  .sustainability-hero__icon img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 2rem 0 0;
  }
  .sustainability-hero__image-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .sustainability-hero__image-badge {
    top: 2rem;
    bottom: auto;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .sustainability-hero__accent {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  .sustainability-callout__heading {
    max-width: 70rem;
    margin: 0 auto -3rem auto;
  }
  .sustainability-callout__content {
    position: relative;
    width: 54rem;
    max-width: calc(100% - 4rem);
    margin: -12rem auto 0 auto;
    padding: 3rem 4rem;
    background-color: var(--white);
  }
  .sustainability-process {
    background: -webkit-gradient(
      linear,
      left top, left bottom,
      from(var(--white)),
      color-stop(9rem, var(--white)),
      color-stop(9rem, var(--cream)),
      to(var(--cream))
    );
    background: linear-gradient(
      180deg,
      var(--white) 0%,
      var(--white) 9rem,
      var(--cream) 9rem,
      var(--cream) 100%
    );
  }
  .sustainability-outro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
  }
  .sustainability-outro__content {
    margin-bottom: 0;
  }
}

/* Recipes */

.recipes-hero {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0;
}
.recipes-hero__image {
  position: relative;
}
.recipes-hero__image-circle {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 20rem;
  height: 20rem;
  background-color: var(--brown-med);
  border-radius: 50%;
  -webkit-transform: translate(-6rem, -50%);
  transform: translate(-6rem, -50%);
  color: var(--brown-light);
  text-align: center;
}
.recipes-hero__image-circle-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 4rem;
}

.recipes-hero__explainer {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
}
.recipes-hero__explainer p:last-of-type {
  margin: 0;
}
.recipes-hero__difficulty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0;
  font-family: "century_schoolbook_proregularitalic";
}
.recipes-hero__difficulty img {
  margin-right: 1rem;
}

.recipes-hero__accent {
  display: none;
}

.recipes__recipes--top {
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(var(--white)),
    color-stop(8rem, var(--white)),
    color-stop(8rem, var(--cream)),
    to(var(--cream))
  );
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    var(--white) 8rem,
    var(--cream) 8rem,
    var(--cream) 100%
  );
}

.recipes__recipes-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.recipes__recipes-search span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 2rem;
  font-family: "brothers";
  font-weight: 700;
  text-transform: uppercase;
}
.recipes__recipes-search input[type="text"] {
  max-width: 36rem;
  background: var(--white);
}
.recipes__recipe-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.recipes__recipes-radio-group {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--white);
}
.recipes__recipes-radio-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  color: var(--brown-dark);
  font-family: "century_schoolbook_proregular";
  font-size: 1.5rem;
  line-height: 1.8;
}

.recipes__recipes--bottom {
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(var(--cream)),
    color-stop(16rem, var(--cream)),
    color-stop(16rem, var(--white)),
    to(var(--white))
  );
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--cream) 16rem,
    var(--white) 16rem,
    var(--white) 100%
  );
}
.recipes__recipes-list {
  margin: -1rem;
  padding-top: 2rem;
}
.recipes__recipes-item {
  width: 100%;
  padding: 1rem;
}

.recipes__no-results {
  display: none;
  max-width: 30rem;
  margin: 0 auto;
  padding-top: 23rem;
  text-align: center;
}

@media (min-width: 576px) {
  .recipes__recipes-item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .recipes-hero {
    margin-bottom: 6rem;
    padding-left: 0;
    padding-right: 0;
  }
  .recipes-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6rem;
  }
  .recipes-hero__content {
    max-width: 57rem;
    justify-self: end;
    padding-left: 2rem;
    padding-right: 4rem;
  }
  .recipes-hero__image-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .recipes-hero__accent {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  .recipes__recipes--top {
    background: -webkit-gradient(
      linear,
      left top, left bottom,
      from(var(--white)),
      color-stop(9rem, var(--white)),
      color-stop(9rem, var(--cream)),
      to(var(--cream))
    );
    background: linear-gradient(
      180deg,
      var(--white) 0%,
      var(--white) 9rem,
      var(--cream) 9rem,
      var(--cream) 100%
    );
  }
  .recipes__recipes-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
  }
  .recipes__recipes-item {
    width: 33.333%;
  }
}

/* Recipe */

.recipe__subtitle {
  font-size: 2.8rem;
}

.recipe__image {
  margin-bottom: 2rem;
}

.recipe__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.recipe__social span {
  margin-right: 2rem;
  font-family: "brothers";
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.recipe__social-icons {
  font-size: 0;
}
.recipe__social-icons a {
  display: inline-block;
  margin-right: 1rem;
  text-decoration: none;
}
.recipe__social-icons a:hover,
.recipe__social-icons a:active,
.recipe__social-icons a:focus {
  opacity: 0.8;
  cursor: pointer;
}

.recipe__print-title,
.recipe__print-image {
  display: none;
}

.recipe__details h3 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream);
}

.recipe__details h3 + p {
  margin-top: 0;
}

.recipe__difficulty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3rem;
  font-family: "century_schoolbook_proregularitalic";
}
.recipe__difficulty-icon {
  margin-right: 1rem;
}

.recipe__ingredients {
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}
.recipe__ingredient {
  padding: 0.8rem 0;
  border-bottom: 2px solid var(--cream);
}
.recipe__ingredient:first-of-type {
  padding-top: 0;
}
.recipe__ingredient:last-of-type {
  border-bottom: 0;
}

.recipe__sub-item {
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--cream);
}
.receipe__sub-item-title {
  margin-top: -2rem !important;
  margin-bottom: -1rem;
  font-family: "brothers";
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.recipe__sub-item h3 {
  border-color: var(--white);
}
.recipe__sub-item .recipe__ingredient {
  border-color: var(--white);
}

.recipe__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.recipe__back span {
  display: block;
  margin-left: 1rem;
  font-family: "brothers";
  font-weight: 700;
  text-transform: uppercase;
}

.recipes__products-heading {
  text-align: center;
}
.recipes__products {
  margin-bottom: 4rem;
  text-align: center;
}
.recipes__products img {
  height: 24rem;
}

.recipes__inspirations-heading {
  text-align: center;
}

@media (min-width: 576px) {
  .recipe__inspirations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
  }
}
@media (min-width: 992px) {
  .recipe__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
  }
  .recipes__products-heading {
    text-align: left;
  }
  .recipes__products {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: flex-start;
    margin-bottom: 0;
    text-align: left;
  }
  .recipes__inspirations-heading {
    text-align: left;
  }
  .recipe__back {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .recipe__inner {
    grid-gap: 8rem;
  }
}

/* Contact */

.contact__details {
  margin-top: 2rem;
  padding: 4rem;
  background-color: var(--cream);
  text-align: center;
}
.contact__address {
  margin-top: 2rem;
}
.contact__address p {
  margin: 0;
}
@media (min-width: 992px) {
  .contact__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contact__details > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
  .contact__address {
    margin-top: 0;
    text-align: left;
  }
}

/* Where to Buy */

.where-to-buy__table table {
  width: 100%;
  margin-top: 6rem;
  border-collapse: collapse;
  text-align: left;
}
.where-to-buy__table table th {
  padding-bottom: 1rem;
}
.where-to-buy__table table tbody tr {
  border-top: 2px solid var(--cream);
}
.where-to-buy__table table td {
  padding: 1rem 0;
}
.where-to-buy__offer {
  margin-bottom: 4rem;
}

/* Slide in CTA */

.slide-in-cta {
  position: fixed;
	z-index: 99;
  top: 50%;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slide-in-cta__link {
	position: relative;
  display: block;
}
.slide-in-cta__link:after {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.slide-in-cta__toggle {
	position: absolute;
	top: 0;
	left: -3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background-color: var(--brown-med);
}
.slide-in-cta__toggle > svg {
	width: 3rem;
	height: 3rem;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.slide-in-cta__toggle:hover,
.slide-in-cta__toggle:focus,
.slide-in-cta__toggle:active {
	background-color: var(--brown-dark);
	cursor: pointer;
}
.slide-in-cta__link:hover:after,
.slide-in-cta__link:active:after,
.slide-in-cta__link:focus:after {
	border-top: 2rem solid var(--brown-med);
	border-right: 2rem solid var(--white);
}
.slide-in-cta.is-active {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.slide-in-cta.is-active .slide-in-cta__toggle svg {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

/* One Trust */

#onetrust {
  background: #fff;
  color: #262626;
  padding-bottom: 2rem;
  word-wrap: break-word;
}
#onetrust a {
  color: #262626;
  text-decoration: underline;
}
#onetrust .otnotice-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
#onetrust .otnotice-menu-section {
  margin-bottom: 0.5rem;
}
#cookie-policy-title {
  display: none;
}
#onetrust .otnotice-timestamp {
  float: right;
}

#onetrust-banner-sdk,
#onetrust-pc-sdk,
#ot-sdk-cookie-policy,
#ot-sync-ntfy {
  font-size: 2rem !important;
}

/* Instagram Feed */

#sbi_images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-bottom: 4rem;
}
.sbi_item {
  width: 100% !important;
}
@media (min-width: 992px) {
  #sbi_images {
    margin-bottom: 0;
  }
}
