/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,600;0,700;1,500;1,600;1,700&display=swap'); */
/*!
 Theme Name: Real Food by Dad 2020
 Description: A Wordpress theme developed by Alchemy + Aim.
 Version: 5.11
 Author: Alchemy + Aim
 Author URI: http://www.alchemyandaim.com
 */
/* Responsive Breakpoints */
/* Container Widths */
/* Colors */
/* Fonts */
@font-face {
  font-family: 'Vanguard';
  src: url('../eot/vanguard-cf-medium.eot');
  src: url('../eot/vanguard-cf-mediumd41d.eot#iefix') format('embedded-opentype'), url('../woff2/vanguard-cf-medium.woff2') format('woff2'), url('../woff/vanguard-cf-medium.woff') format('woff'), url('../ttf/vanguard-cf-medium.ttf') format('truetype'), url('../svg/vanguard-cf-medium.svg#youworkforthem') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Vanguard';
  src: url('../ttf/vanguard-cf-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'vosten';
  src: url('../woff2/black_vosten_personal_use-webfont.woff2') format('woff2'), url('../woff/black_vosten_personal_use-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/***************************************
 Mixins
 contains global mixins, functions, helper selectors, etc.
 ***************************************/
/* Simple clearfix */
/*
 Better Placeholders.
 Usage:
 @include placeholder() {
 color: $dark;
 opacity: 1.0;
 }
 */
/* Utilities
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
*, :after, :before {
  box-sizing: border-box;
}
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}
/* Clearing
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.row:after, .u-cf {
  content: "";
  display: table;
  clear: both;
}
/* Adjust containers and rows padding for Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* Frontend Admin Dashboard Icon
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.admin-bar #wpadminbar ul#wp-admin-bar-root-default > li#wp-admin-bar-custom_menu a:before {
  color: rgba(240, 245, 250, .6);
  content: "\f226";
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 1.25;
  vertical-align: top;
  -moz-osx-font-smoothing: grayscale;
  font-family: "dashicons";
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-decoration: inherit;
  text-align: center;
}
.admin-bar {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar {
    top: 46px;
  }
}
/* Core element styles
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
img.aligncenter, figure.aligncenter {
  display: block;
  margin: 0 auto 40px;
  max-width: 100%;
  height: auto;
}
img.alignright, figure.alignright {
  display: inline-block;
  padding-left: 1.6%;
  float: right;
  max-width: 100%;
  height: auto;
}
img.alignleft, figure.alignleft {
  display: inline-block;
  padding-right: 1.6%;
  float: left;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
hr {
  margin: 40px auto;
  border: 1px solid #707070;
}
#outer-wrapper {
  overflow: hidden;
}
.content-area {
  float: left;
  width: 62%;
  margin-bottom: 25px;
  word-wrap: break-word;
}
.aside {
  float: right;
  width: 32.2%;
  margin-right: 10px;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .content-area {
    float: none;
    width: 100%;
  }
  .aside {
    float: none;
    width: 98%;
    margin-top: 50px;
  }
}
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}
@media (min-width: 1199px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1479px) {
  .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 540px;
  }
}
.no-sidebar .alignwide {
  margin: 25px calc(25% - 25vw);
}
@media (max-width: 991px) {
  .no-sidebar .alignwide {
    margin: 0 auto;
  }
}
.no-sidebar .alignfull {
  margin: 25px calc(50% - 50vw) !important;
  max-width: 100vw !important;
  width: 100vw !important;
}
/* Lists
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: disc outside;
}
ol {
  list-style: decimal outside;
}
ol, ul {
  padding-left: 1.5em;
  margin-top: 0;
}
ul ul, ul ol, ol ol, ol ul {
  margin: 2% 0 2% 4.5%;
}
li {
  margin-bottom: 0;
}
/* Tables
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
table th, .wp-block-table th, table td, .wp-block-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #f1f1f1;
}
/* FORMS AND FIELDS
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
}
input[type="email"]:-webkit-autofill, input[type="number"]:-webkit-autofill, input[type="search"]:-webkit-autofill, input[type="text"]:-webkit-autofill, input[type="tel"]:-webkit-autofill, input[type="url"]:-webkit-autofill, input[type="password"]:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
}
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
}
textarea {
  min-height: 100px;
}
select:not([multiple]) {
  padding-right: 52px;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'Montserrat';
  background-image: url(data:image/svg+xml;base64,PHN2ZwogICAgICAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgICAgICB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIKICAgICAgICB3aWR0aD0iNjBweCIgaGVpZ2h0PSI0MHB4Ij4KICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgIGZpbGw9InJnYigxNjEsIDE2MSwgMTYxKSIKICAgICAgICAgIGQ9Ik0wLjAwMCwwLjAwMCBMNjAuMDAwLDAuMDAwIEwzMC4wMDAsNDAuMDAwIEwwLjAwMCwwLjAwMCBaIi8+Cjwvc3ZnPg==);
  background-image: url('../svg/dropdown.svg');
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  background-size: 19px;
}
select:not([multiple]):-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
select:not([multiple]) option:not(:checked) {
  color: #000;
}
select:not([multiple]):focus {
  box-shadow: none;
}
label, legend {
  display: block;
  margin-bottom: 10px;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"], input[type="radio"] {
  display: inline;
}
label > .label-body {
  display: inline-block;
  margin-left: 10px;
  font-weight: normal;
}
::placeholder {
  opacity: 1;
}
:focus::placeholder {
  opacity: 0.15;
}
form br {
  display: none;
}
/* BUTTONS
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.button, button, input[type="submit"], input[type="reset"], input[type="button"], .wp-block-file__button, .wp-block-button__link {
  display: inline-block;
  padding: 22px 48px;
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-radius: 0;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .wp-block-file__button:hover, .wp-block-button__link:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus, .wp-block-file__button:focus, .wp-block-button__link:focus {
  color: #fff;
  background-color: #000;
  outline: 0;
}
.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary, .wp-block-file__button, .wp-block-button__link {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .wp-block-file__button:hover, .wp-block-button__link:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus, .wp-block-file__button:focus, .wp-block-button__link:focus {
  color: #fff;
  background-color: #000;
}
/* Spacing
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
button, .button {
  margin-bottom: 2%;
}
input, textarea, select, fieldset {
  margin-bottom: 10px;
}
pre, dl, table, ul, ol, form {
  margin-bottom: 5%;
}
/* Code
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
code, .wp-block-code {
  margin: 0 5px;
  padding: 2px 10px;
  font-size: 90%;
  white-space: nowrap;
  background: #f6f6f6;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
code textarea, .wp-block-code textarea {
  background-color: transparent;
}
pre > code {
  display: block;
  padding: 5px 15px;
  white-space: pre;
}
/* Default WP Image Gallery Styles
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.blocks-gallery-grid.blocks-gallery-grid {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n), .blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n), .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n), .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n), .blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n), .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n), .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n), .blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n), .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n), .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n), .blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n), .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n), .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n), .blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n), .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n), .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n), .blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n), .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n), .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n), .blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n), .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n), .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n) {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  .blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n), .blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n), .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n), .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.wp-block-gallery .blocks-gallery-image:last-child, .wp-block-gallery .blocks-gallery-item:last-child {
  margin-right: 0 !important;
}
html {
  outline: none !important;
  /* Adjust font size */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* Font varient */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}
body {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0em;
  font-weight: 500;
  text-transform: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Vanguard', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
}
h1 {
  font-size: 80px;
}
h2 {
  font-size: 42px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
p {
  margin: 1.5em auto;
  line-height: 1.5em;
}
/* Colors for Visual Editor (_includes/functions/editor.php)
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
span.color-black {
  color: #000;
}
span.color-white {
  color: #fff;
}
/* Weights for Visual Editor (_includes/functions/editor.php)
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.weight-light {
  font-weight: 300;
}
.weight-regular {
  font-weight: 400;
}
.weight-medium {
  font-weight: 500;
}
.weight-bold {
  font-weight: 700;
}
.weight-black {
  font-weight: 900;
}
/* Underline for Visual Editor (_includes/functions/editor.php)
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
.text-underline {
  text-decoration: underline;
}
.accent {
  font-size: 60px;
  font-family: 'vosten', sans-serif;
  letter-spacing: 0em;
  font-weight: normal;
  text-transform: none;
}
.subheading {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}
/*-----------------------------------------------------------------------------------*/
/*  HEADER
 /*-----------------------------------------------------------------------------------*/
#header-wrapper {
  width: 100%;
  padding: 0 0 60px;
}
/*-----------------------------------------------------------------------------------*/
/*  NAVIGATION
 /*-----------------------------------------------------------------------------------*/
#linkbar {
  width: 100%;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  z-index: 10;
}
#linkbar .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 1199px) {
  #linkbar .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  #linkbar .nav-menu {
    display: none;
  }
}
#linkbar .nav-menu form {
  margin: 0;
  width: 380px;
  max-width: 100%;
}
@media screen and (max-width: 1479px) {
  #linkbar .nav-menu form {
    max-width: 280px;
  }
}
@media screen and (max-width: 1199px) {
  #linkbar .nav-menu form {
    margin-top: 20px;
  }
}
#linkbar a {
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1199px) {
  #linkbar a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  #linkbar nav {
    display: none;
  }
}
#linkbar ul {
  list-style-type: none;
  margin-bottom: 0;
}
#linkbar ul.nav-list {
  padding-left: 0;
}
#linkbar ul.nav-list > li:first-of-type {
  padding-left: 0;
}
#linkbar ul li {
  display: inline;
  padding: 20px;
  position: relative;
}
#linkbar ul li:hover ul {
  display: block;
}
#linkbar ul li ul {
  display: none;
}
#linkbar ul li ul li {
  padding: 20px 20px 0;
  display: block;
  margin: 10px 0;
}
@media screen and (max-width: 1199px) {
  #linkbar ul li {
    padding: 6px;
  }
}
@media screen and (min-width: 1024px) {
  #header-wrapper.scroll #linkbar {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: white;
  }
  .admin-bar #header-wrapper.scroll #linkbar {
    position: fixed;
    width: 100%;
    left: 0;
    top: 32px;
    z-index: 1000;
  }
}
/*   NAV SUB MENUS
 ==========*/
.nav-menu li.menu-item-has-children > a {
  position: relative;
}
.nav-menu li.menu-item-has-children > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -18px;
  margin-top: -2px;
  border: 4px solid transparent;
  border-bottom-width: 0;
  border-top-color: #f7f7f7;
  transition: transform 0.2s ease;
}
.nav-menu li.menu-item-has-children:hover > a:after {
  transform: rotateZ(180deg);
}
.nav-menu li.menu-item-has-children .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 0 20px 20px;
  min-width: 150px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  margin: -5px 0 0;
  transform: translateX(-50%);
  animation-fill-mode: forwards;
  background-color: #f7f7f7;
}
.nav-menu li.menu-item-has-children:hover > .sub-menu {
  z-index: 5;
  opacity: 1;
  visibility: visible;
  animation: submenuShow 0.5s ease;
  animation-fill-mode: backwards;
}
@keyframes submenuShow {
  0% {
    z-index: -1;
    visibility: hidden;
    opacity: 0;
  }
  1% {
    z-index: 5;
    visibility: visible;
  }
  25% {
    opacity: 1;
  }
  100% {
    z-index: 5;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes submenuHide {
  0% {
    z-index: 5;
    opacity: 1;
    visibility: visible;
  }
  99% {
    z-index: 5;
    opacity: 1;
    visibility: visible;
  }
  100% {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
}
.nav-menu li.menu-item-has-children .sub-menu li {
  display: block;
  margin: 0;
  padding: 0;
}
/*   Mobile Nav 
 ==========*/
#slideout-menu {
  position: fixed;
  padding: 100px 50px;
  min-width: 150px;
  max-width: 350px;
  top: 0;
  right: -350px;
  min-height: 100vh;
  z-index: 10000;
  max-height: calc(100vh - 100px);
  overflow: auto;
  background-color: #f7f7f7;
}
@media screen and (max-width: 349px) {
  #slideout-menu {
    max-width: 320px;
    right: -320px;
  }
}
#slideout-menu a {
  color: #000;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}
#slideout-menu #nav-close {
  position: absolute;
  top: 60px;
  right: 30px;
  height: 20px;
  width: 20px;
}
#slideout-menu .close-lines1, #slideout-menu .close-lines2 {
  width: 20px;
  display: block;
  background-color: #000;
  height: 2px;
  position: relative;
  transition: transform 300ms ease;
  transition-delay: 400ms;
}
#slideout-menu .close-lines1 {
  top: 8px;
  transform: rotate(-180deg);
}
#slideout-menu .close-lines2 {
  top: 6px;
}
#slideout-menu .menu-item-has-children > a:after {
  position: relative;
}
#slideout-menu ul {
  text-align: right;
  list-style: none;
}
#slideout-menu ul li {
  margin-bottom: 1em;
  position: relative;
}
#slideout-menu ul li #submenu-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  right: -18px;
  margin-top: -15px;
  border: 4px solid transparent;
  border-bottom-width: 0;
  border-top-color: transparent;
  width: 25px;
  height: 25px;
  transition: transform 0.2s ease;
  background-image: url(data:image/svg+xml;base64,PHN2ZwogICAgICAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgICAgICB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIKICAgICAgICB3aWR0aD0iNjBweCIgaGVpZ2h0PSI0MHB4Ij4KICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgIGZpbGw9InJnYigxNjEsIDE2MSwgMTYxKSIKICAgICAgICAgIGQ9Ik0wLjAwMCwwLjAwMCBMNjAuMDAwLDAuMDAwIEwzMC4wMDAsNDAuMDAwIEwwLjAwMCwwLjAwMCBaIi8+Cjwvc3ZnPg==);
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}
#slideout-menu ul.sub-menu {
  display: none;
  margin: 2em 0;
}
#slideout-menu .widget {
  border-bottom: 0;
  text-align: right;
}
#slideout-menu .widget .social-links i, #slideout-menu .widget .social-links svg {
  margin-left: 20px;
}
#slideout-menu.open .close-lines1 {
  transform: rotate(45deg);
}
#slideout-menu.open .close-lines2 {
  transform: rotate(-45deg);
}
a#slideout-trigger {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 30px;
  top: 48px;
  display: none;
}
@media only screen and (min-width: 769px) {
  a#slideout-trigger {
    top: 50px;
  }
}
@media only screen and (max-width: 1025px) {
  a#slideout-trigger {
    display: block;
  }
}
#slideout-bar {
  width: 20px;
  height: 2px;
  top: 6px;
  position: relative;
  background-color: #000;
}
#slideout-bar:before, #slideout-bar:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  position: relative;
  background-color: #000;
}
#slideout-bar:before {
  bottom: 5px;
}
#slideout-bar:after {
  top: 3px;
}
/*-----------------------------------------------------------------------------------*/
/*  FOOTER
 /*-----------------------------------------------------------------------------------*/
footer {
  margin-top: 85px;
  margin-top: 0;
  background-color: #f7f7f7;
  color: #f7f7f7;
  padding-top: 60px;
  position: relative;
}
footer a, footer a:visited {
  color: #777;
}
footer a:hover, footer a:visited:hover {
  color: #000;
}
footer #instagram_container {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0px 75px 50px;
}
footer #credits .footer-left {
  width: 50%;
}
@media (max-width: 767px) {
  footer #credits .footer-left {
    width: 100%;
    text-align: center;
  }
}
footer #credits .footer-right {
  width: 50%;
  text-align: right;
}
@media (max-width: 767px) {
  footer #credits .footer-right {
    width: 100%;
    text-align: center;
  }
}
footer #credits p {
  text-align: center;
  margin: 0;
  padding: 32px 1em;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  font-size: 14px;
}
footer #credits p a {
  color: #777;
}
footer #credits p a:hover {
  color: #000;
}
footer .social-links a {
  text-decoration: none;
}
#creditslide {
  position: fixed;
  padding: 65px 0 70px;
  width: 100%;
  bottom: -190px;
  z-index: 9999999;
  text-align: center;
  transition: 200ms ease-in-out all;
  background-color: #f1f1f1;
}
#creditslide #credit-close {
  position: absolute;
  top: 25px;
  right: 25px;
  height: 15px;
  width: 15px;
  content: '';
  cursor: pointer;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjM1N3B4IiBoZWlnaHQ9IjM1N3B4IiB2aWV3Qm94PSIwIDAgMzU3IDM1NyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzU3IDM1NzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGcgaWQ9ImNsb3NlIj4NCgkJPHBvbHlnb24gcG9pbnRzPSIzNTcsMzUuNyAzMjEuMywwIDE3OC41LDE0Mi44IDM1LjcsMCAwLDM1LjcgMTQyLjgsMTc4LjUgMCwzMjEuMyAzNS43LDM1NyAxNzguNSwyMTQuMiAzMjEuMywzNTcgMzU3LDMyMS4zIA0KCQkJMjE0LjIsMTc4LjUgCQkiLz4NCgk8L2c+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8L3N2Zz4NCg==);
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 15px;
}
@media screen and (max-width: 767px) {
  #creditslide {
    bottom: -283px;
  }
}
#creditslide .container > * {
  display: inline-block;
  vertical-align: top;
  width: 32%;
  padding: 0 1%;
}
#creditslide .callout-std a {
  color: #777;
}
#creditslide .callout-std a:hover {
  color: #000;
}
#creditslide .callout-std span {
  display: table;
  margin: 0 auto;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #creditslide .callout-std {
    width: 100%;
    margin: 1em auto;
  }
}
#creditslide.credit-open {
  bottom: 0;
}
#logo_row {
  padding: 30px 0 20px;
}
#logo_row .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #logo_row .container {
    flex-wrap: wrap;
  }
}
#logo_row .container > a {
  display: block;
}
#logo_row .container > a .logo {
  height: auto;
  width: 230px;
}
@media screen and (max-width: 768px) {
  #logo_row .container > a {
    width: 230px;
  }
}
#logo_row .container .header_socials {
  font-size: 20px;
}
#logo_row .container .header_socials a {
  padding: 0 16px;
}
#logo_row .container .header_socials a:last-of-type {
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  #logo_row .container .header_socials {
    margin-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  #logo_row .container .header_socials {
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
    text-align: center;
  }
  #logo_row .container .header_socials a:last-of-type {
    padding-right: 16px;
  }
}
.pagination {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.pagination a {
  display: flex;
  align-items: center;
}
.pagination a .text {
  font-size: 18px;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
}
.pagination a:hover {
  color: #000;
}
.pagination a:hover .text {
  opacity: 1;
  color: #000;
}
.pagination .arrow {
  background-color: white;
  border: 2px solid black;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination a:hover .arrow {
  background-color: black;
}
.pagination a:hover .arrow svg {
  filter: invert(1);
}
.wp-pagenavi {
  text-align: center;
  font-size: 22px;
}
.wp-pagenavi a, .wp-pagenavi a:visited {
  margin: 0 0.25em;
  color: #777;
  text-decoration: underline;
}
.wp-pagenavi a:hover, .wp-pagenavi a:visited:hover {
  color: #000;
}
.wp-pagenavi span {
  margin: 0 0.25em;
}
.wp-pagenavi .extend {
  color: #777;
}
/*-----------------------------------------------------------------------------------*/
/*  BLOG
 /*-----------------------------------------------------------------------------------*/
.post {
  margin-bottom: 2%;
}
.post-meta {
  margin-bottom: 2%;
}
/*-----------------------------------------------------------------------------------*/
/*	BLOG SINGLE
 /*-----------------------------------------------------------------------------------*/
.post-footer {
  margin-bottom: 2%;
}
/*-----------------------------------------------------------------------------------*/
/*	SHARE LINKS
 /*-----------------------------------------------------------------------------------*/
.share-buttons div {
  display: inline;
  padding: 0 5px;
}
/*-----------------------------------------------------------------------------------*/
/*	NAVIGATION
 /*-----------------------------------------------------------------------------------*/
#navigation .pagination .nav-previous {
  float: right;
}
#navigation .pagination .nav-next {
  float: left;
}
/*-----------------------------------------------------------------------------------*/
/*	ABOUT AUTHOR
 /*-----------------------------------------------------------------------------------*/
#about_author {
  background-color: #f1f1f1;
  box-sizing: border-box;
  padding: 30px 30px 5px;
  margin: 25px 0;
}
#about_author img {
  float: left;
  height: 100px;
  width: 100px;
  margin-right: 20px;
}
/*-----------------------------------------------------------------------------------*/
/*	SIDEBAR & WIDGETS
 /*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*	RELATED POSTS
 /*-----------------------------------------------------------------------------------*/
#related_posts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#related_posts ul li {
  text-align: center;
  box-sizing: border-box;
  width: 32.26%;
  margin-right: 1.6%;
}
#related_posts ul li:last-child {
  margin-right: 0;
}
#related_posts .relatedcontent h5 {
  margin-bottom: 0;
}
/*-----------------------------------------------------------------------------------*/
/*	COMMENTS
 /*-----------------------------------------------------------------------------------*/
#comments {
  clear: both;
}
#comments ul#comment-block li.comment {
  list-style: none;
}
#comments ul#comment-block li.comment .user {
  float: left;
  width: 75px;
  height: 75px;
  margin-right: 20px;
}
#comments ul#comment-block li.comment .message {
  overflow: hidden;
}
/* Add theme page styles here */
* {
  box-sizing: border-box;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #777;
}
#content-wrapper > .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #content-wrapper > .container {
    flex-wrap: wrap;
  }
}
#content-wrapper > .container > .content-area {
  width: calc(67% - 30px);
  float: none;
}
#content-wrapper > .container > .content-area img {
  max-width: 100%;
}
@media screen and (max-width: 1440px) {
  #content-wrapper > .container > .content-area {
    width: calc(100% - 392px);
  }
}
@media screen and (max-width: 1199px) {
  #content-wrapper > .container > .content-area {
    width: calc(100% - 410px);
  }
}
@media screen and (max-width: 768px) {
  #content-wrapper > .container > .content-area {
    width: 100%;
  }
}
#content-wrapper > .container > .aside {
  padding: 30px;
  width: calc(33% - 30px);
  min-width: 320px;
  max-width: 392px;
  background-color: #f7f7f7;
  margin-right: 0;
  float: none;
}
@media screen and (max-width: 1199px) {
  #content-wrapper > .container > .aside {
    min-width: 370px;
  }
}
@media screen and (max-width: 768px) {
  #content-wrapper > .container > .aside {
    width: 100%;
    min-width: 100px;
    margin-bottom: 40px;
    display: inline-block;
    margin: 40px auto;
  }
}
.page-template-page-default .content a, .page-template-template-sidebar .content a, .page-template-page-default .content-area a:not(.button), .page-template-template-sidebar .content-area a:not(.button) {
  color: #777;
  text-decoration: underline;
}
.page-template-page-default .content a:hover, .page-template-template-sidebar .content a:hover, .page-template-page-default .content-area a:not(.button):hover, .page-template-template-sidebar .content-area a:not(.button):hover {
  color: #000;
}
.page-template-page-default .entry-title, .page-template-template-sidebar .entry-title {
  margin-bottom: 50px;
}
.page-template-page-default .entry-content h4, .page-template-template-sidebar .entry-content h4 {
  font-size: 16px;
  margin-bottom: 16px;
}
.page-template-page-default .entry-content h4 + p, .page-template-template-sidebar .entry-content h4 + p {
  margin-top: 16px;
}
.page-template-page-default #gform_wrapper_2, .page-template-template-sidebar #gform_wrapper_2 {
  margin-top: -10px;
}
.aasearchform {
  border: 1px solid black;
  display: flex;
  height: 50px;
  max-width: 380px;
  justify-content: space-between;
  background-color: white;
}
.aasearchform input[type=text] {
  width: calc(100% - 70px);
  border: None;
  line-height: 48px;
  padding: 0 1em;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: 14px;
  font-weight: 300;
  min-height: 48px;
}
.aasearchform input[type=text].placeholder {
  color: #000;
  opacity: 1;
}
.aasearchform input[type=text]:-moz-placeholder {
  color: #000;
  opacity: 1;
}
.aasearchform input[type=text]::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.aasearchform input[type=text]:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.aasearchform input[type=text]::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
.aasearchform button {
  background-color: transparent;
  border: none;
  line-height: 50px;
  padding: 0 20px;
  margin: 0;
  display: flex;
  align-items: center;
}
.aasearchform button:hover {
  background-color: #f7f7f7;
}
h1.entry-title {
  margin-top: 0;
  margin-bottom: 70px;
}
h1.entry-title.archive {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  h1.entry-title {
    font-size: 60px;
  }
}
.term_description {
  font-size: 18px;
}
.term_description p {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .term_description {
    font-size: 16px;
  }
}
h2.entry-title {
  margin-top: 18px;
}
.entry-title.search {
  color: #777;
}
.entry-title.search .term {
  color: #000;
}
.entry-content img.size-large {
  width: 100%;
}
.entry-content li {
  margin-bottom: 0.5em;
  line-height: 1.5em;
}
#mv_recipe_wrapper {
  width: 100%;
  padding: 40px;
  border: 2px solid #000;
  border-top: 6px solid #000;
}
#mv_recipe_wrapper .mv-create-card {
  max-width: 100%;
  margin: 0;
}
#mv_recipe_wrapper .mv-create-card .mv-create-wrapper {
  padding: 0;
  border: none;
}
#mv_recipe_wrapper .mv-create-yield {
  letter-spacing: 0.1em;
}
#mv_recipe_wrapper .mv-create-pin-button .mv-icon-pinterest {
  background-image: url('../png/pinterest_white.png');
}
.archive_grid {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 32px);
  margin-left: -16px;
  flex-wrap: wrap;
}
.archive_grid article {
  padding: 16px;
  width: calc(100% / 3);
  text-align: center;
}
.archive_grid article h2.entry-title {
  font-size: 27px;
}
@media screen and (max-width: 1199px) {
  .archive_grid article h2.entry-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1023px) {
  .archive_grid article {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .archive_grid article h2.entry-title {
    font-size: 20px;
  }
}
.archive_grid:after {
  content: "";
  flex: auto;
}
.widget_text p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 2.5em;
}
.widget_text p a {
  text-decoration: underline;
}
.widget_text p:first-of-type {
  margin-bottom: 1em;
}
.widget_text h2 {
  margin: 0;
}
.widget_text .accent {
  font-size: 40px;
  margin-bottom: 0.5em;
}
#sidebar > div.widget {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #777;
}
#sidebar > div.widget:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
#sidebar > div.widget.social {
  text-align: center;
  font-size: 20px;
}
#sidebar > div.widget.social .social-title {
  display: block;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
}
#sidebar > div.widget.social a {
  padding: 0 16px;
}
#sidebar > div.widget.signup .gform_wrapper span.gform_description {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
}
#sidebar > div.widget.signup input[type="text"] {
  display: block;
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 50px;
  padding: 0 1em;
}
#sidebar > div.widget.signup .gform_footer {
  padding-top: 0;
  text-align: right;
}
#sidebar > div.widget.signup .gform_footer input[type="submit"] {
  padding: 15px 22px;
  background-color: transparent;
}
#sidebar > div.widget.signup .gform_footer input[type="submit"]:hover {
  background-color: #000;
}
#sidebar > div.widget.trending_recipes h3.widget-title {
  font-size: 60px;
  font-family: 'vosten', sans-serif;
  letter-spacing: 0em;
  font-weight: normal;
  text-transform: none;
  font-size: 40px;
  text-align: center;
}
#sidebar > div.widget.trending_recipes .trending_flex {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
#sidebar > div.widget.trending_recipes .trending_flex article {
  width: calc(50% - 20px);
  margin-bottom: 20px;
  text-align: center;
}
#sidebar > div.widget.trending_recipes .trending_flex article h3 {
  font-size: 22px;
  margin-top: 8px;
  margin-bottom: 0;
}
#recipe_list .facetwp-template {
  display: flex;
  width: calc(100% + 36px);
  margin-left: -18px;
  flex-wrap: wrap;
}
#recipe_list .facetwp-template:after {
  content: '';
  flex: auto;
}
#recipe_list .facetwp-template article {
  width: 25%;
  padding: 0 18px;
  margin-bottom: 62px;
}
#recipe_list .facetwp-template article h2.entry-title {
  font-size: 27px;
}
@media screen and (max-width: 1023px) {
  #recipe_list .facetwp-template article {
    width: 33.33%;
  }
  #recipe_list .facetwp-template article h2.entry-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  #recipe_list .facetwp-template article {
    width: 50%;
  }
  #recipe_list .facetwp-template article h2.entry-title {
    font-size: 18px;
  }
}
.page-template-page-recipes h1.entry-title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-template-page-recipes h1.entry-title {
    font-size: 60px;
  }
}
.page-template-page-recipes .content {
  width: 100%;
}
.page-template-page-recipes .facetwp-facet-search {
  text-align: center;
}
.page-template-page-recipes .facetwp-facet-search input {
  border: 2px solid black;
  line-height: 62px;
  min-height: 62px;
  padding: 0 1.5em;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Montserrat';
  letter-spacing: 0.075em;
  color: black;
  width: 100%;
  max-width: 830px;
}
.page-template-page-recipes .facetwp-facet-search input.placeholder {
  color: black;
  opacity: 1;
}
.page-template-page-recipes .facetwp-facet-search input:-moz-placeholder {
  color: black;
  opacity: 1;
}
.page-template-page-recipes .facetwp-facet-search input::-moz-placeholder {
  color: black;
  opacity: 1;
}
.page-template-page-recipes .facetwp-facet-search input:-ms-input-placeholder {
  color: black;
  opacity: 1;
}
.page-template-page-recipes .facetwp-facet-search input::-webkit-input-placeholder {
  color: black;
  opacity: 1;
}
.page-template-page-recipes .facetwp-facet-search .facetwp-btn {
  opacity: 1;
  width: 24px;
  height: 24px;
  right: 25px;
}
.page-template-page-recipes .facetwp-facet-search .facetwp-btn:before {
  background-image: url('../svg/search_glass.svg');
  width: 24px;
  height: 24px;
  background-size: cover;
}
.page-template-page-recipes #filters {
  position: relative;
  padding: 60px 0 0;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  margin: 72px auto 38px;
}
.page-template-page-recipes #filters h2 {
  position: absolute;
  width: 190px;
  text-align: center;
  background-color: white;
  color: #777;
  top: -0.5em;
  line-height: 1em;
  margin-left: calc(50% - 95px);
  margin-top: 0;
}
.page-template-page-recipes #filters p {
  text-align: right;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  margin: 0px 0 36px;
  font-weight: 700;
}
.page-template-page-recipes #filters .flex {
  display: flex;
  width: calc(100% + 30px);
  margin-left: -15px;
  flex-wrap: wrap;
}
.page-template-page-recipes #filters .flex .filter {
  width: calc(100% / 7);
  padding: 0 15px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .page-template-page-recipes #filters .flex .filter {
    width: 170px;
  }
}
@media screen and (max-width: 1023px) {
  .page-template-page-recipes #filters .flex .filter {
    width: 188px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-page-recipes #filters .flex .filter {
    width: 50%;
  }
}
.page-template-page-recipes #filters .flex .filter label {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 1499px) {
  .page-template-page-recipes #filters .flex .filter label {
    font-size: 15px;
  }
}
@media screen and (max-width: 1439px) {
  .page-template-page-recipes #filters .flex .filter label {
    font-size: 14px;
  }
}
.page-template-page-recipes #filters .flex .filter select {
  width: 100%;
  border: 2px solid black;
  line-height: 62px;
  min-height: 62px;
  padding: 0 1em;
  padding-right: 52px;
}
.page-template-page-recipes #filters .flex:after {
  content: '';
  flex: auto;
}
@media screen and (max-width: 767px) {
  .page-template-page-recipes .facetwp-facet {
    margin-bottom: 20px;
  }
}
.page-template-page-recipes .fwp_reset {
  color: #777;
}
.page-template-page-recipes .fwp_reset span {
  margin: 0 8px;
}
.page-template-page-recipes .container {
  max-width: 1510px;
}
@media screen and (min-width: 1479px) {
  .page-template-page-recipes .container {
    max-width: 1510px;
  }
}
.facetwp-pager {
  text-align: center;
  margin-bottom: 80px;
  font-size: 22px;
}
.facetwp-pager .ellipsis {
  text-decoration: underline;
  color: #777;
  padding: 0px 4px;
  margin-right: 6px;
}
.facetwp-pager a {
  text-decoration: underline;
  color: #777;
}
.facetwp-pager a.active {
  text-decoration: none;
  color: #000;
}
.facetwp-pager .facetwp-pager-label {
  display: none;
}
#footer_branding {
  display: none;
}
.footer_insta_link {
  text-align: center;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 auto 50px;
  font-weight: 700;
}
.footer_insta_link a {
  color: #777;
}
.footer_insta_link a:hover {
  color: #000;
}
footer .row_wrapper {
  padding: 32px 0;
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  footer .row_wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
}
footer .links {
  display: flex;
  border-right: 1px solid #cbcbcb;
  width: 58%;
}
footer .links .col {
  padding-right: 1em;
  width: calc(100% / 3);
}
footer .links .col h4 {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
}
footer .links .col ul {
  padding: 0;
}
footer .links .col ul a {
  line-height: 1.25em;
  padding: 0.25em 0;
  display: block;
}
footer .links .col div + div {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  footer .links .col {
    width: 50%;
  }
  footer .links .col:last-of-type {
    width: 100%;
    display: flex;
  }
  footer .links .col:last-of-type div {
    width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  footer .links {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  footer .links {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
footer .footer_widget_area {
  width: 42%;
  padding-left: 48px;
}
@media screen and (min-width: 1200px) {
  footer .footer_widget_area {
    min-width: 550px;
  }
}
footer .footer_widget_area .gform_wrapper span.gform_description {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  width: 100%;
}
footer .footer_widget_area .gform_wrapper span.gform_description span {
  font-size: 60px;
  font-family: 'vosten', sans-serif;
  letter-spacing: 0em;
  font-weight: normal;
  text-transform: none;
  font-size: 38px;
  padding-right: 0.35em;
}
@media screen and (max-width: 767px) {
  footer .footer_widget_area .gform_wrapper span.gform_description {
    text-align: center;
  }
  footer .footer_widget_area .gform_wrapper span.gform_description span {
    display: block;
    padding-top: 10px;
  }
}
footer .footer_widget_area #gform_1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
footer .footer_widget_area #gform_1 .gform_heading {
  width: 100%;
  margin-bottom: 0em;
}
footer .footer_widget_area #gform_1 .gform_body {
  width: calc(100% - 146px);
}
footer .footer_widget_area #gform_1 .gform_body li {
  margin: 0;
}
footer .footer_widget_area #gform_1 .gform_body input[type="text"] {
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #777;
  width: 100%;
  line-height: 50px;
  margin: 0;
  padding: 0 0.5em;
}
@media screen and (max-width: 767px) {
  footer .footer_widget_area #gform_1 .gform_body {
    width: 100%;
  }
}
footer .footer_widget_area #gform_1 .gform_footer {
  width: 128px;
  padding: 0;
}
footer .footer_widget_area #gform_1 .gform_footer input[type="submit"] {
  border: 2px solid #777;
  background-color: transparent;
  color: #777;
  display: block;
  width: 100%;
  line-height: 50px;
  margin: 0;
  padding: 0;
}
footer .footer_widget_area #gform_1 .gform_footer input[type="submit"]:hover {
  color: white;
  background-color: #000;
  border-color: #000;
}
@media screen and (max-width: 767px) {
  footer .footer_widget_area #gform_1 .gform_footer {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_widget_area .widget.social {
    text-align: center;
  }
}
footer .footer_widget_area .widget.social .social-title {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: black;
  margin-top: 62px;
  display: block;
}
footer .footer_widget_area .widget.social a {
  font-size: 20px;
  padding: 16px;
  display: inline-block;
}
footer .footer_widget_area .widget.social a:first-of-type {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  footer .footer_widget_area .widget.social a:first-of-type {
    padding-left: 16px;
  }
}
@media screen and (max-width: 1023px) {
  footer .footer_widget_area {
    width: 100%;
    padding-left: 0;
    padding-top: 60px;
    max-width: 510px;
  }
}
#featured_recipes {
  margin-top: -60px;
  margin-bottom: 90px;
}
#featured_recipes .owl-item .left {
  opacity: 0;
}
#featured_recipes .owl-item.active .left {
  opacity: 1;
}
#featured_recipes .owl-item.active .left h1, #featured_recipes .owl-item.active .left .accent, #featured_recipes .owl-item.active .left .description, #featured_recipes .owl-item.active .left .recipe_meta {
  animation: leftFade 1s ease;
}
#featured_recipes .owl-item.active .left .counter {
  animation: leftFadeMargin 1s ease;
}
@keyframes leftFade {
  0% {
    bottom: -15px;
    opacity: 0;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}
@keyframes leftFadeMargin {
  0% {
    margin-left: -15px;
    opacity: 0;
  }
  100% {
    margin-left: 0px;
    opacity: 1;
  }
}
#featured_recipes .owl-nav {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  width: 100%;
  position: absolute;
  bottom: 120px;
  left: calc(50vw + 20px);
}
@media (min-width: 1199px) {
  #featured_recipes .owl-nav {
    margin-left: -600px;
  }
}
@media (min-width: 1479px) {
  #featured_recipes .owl-nav {
    margin-left: -700px;
  }
}
@media (max-width: 1198px) {
  #featured_recipes .owl-nav {
    margin-left: -480px;
  }
}
@media (max-width: 991px) {
  #featured_recipes .owl-nav {
    left: 20px;
    bottom: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #featured_recipes .owl-nav {
    max-width: calc(100% - 40px);
    width: 100%;
    bottom: 0px;
  }
}
#featured_recipes .owl-nav > div {
  display: flex;
  align-items: center;
  position: absolute;
}
#featured_recipes .owl-nav > div.owl-prev {
  left: 0;
}
#featured_recipes .owl-nav > div.owl-next {
  right: 0;
}
#featured_recipes .owl-nav > div .text {
  font-size: 18px;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
}
#featured_recipes .owl-nav > div:hover {
  color: #000;
}
#featured_recipes .owl-nav > div:hover .text {
  opacity: 1;
  color: #000;
}
#featured_recipes .owl-nav .arrow {
  background-color: white;
  border: 2px solid black;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url('../png/arrow_left_black%402x.png');
}
#featured_recipes .owl-nav > div:hover .arrow {
  background-color: black;
  background-image: url('../png/arrow_left_white%402x.png');
}
#featured_recipes .owl-nav .owl-next .arrow {
  background-image: url('../png/arrow_right_black%402x.png');
}
#featured_recipes .owl-nav .owl-next:hover .arrow {
  background-color: black;
  background-image: url('../png/arrow_right_white%402x.png');
}
/*
 .browser-Explorer {
 #featured_recipes {
 .owl-nav {
 left:calc(50vw + 10px);
 & > div:hover {
 .arrow {
 background-color:transparent;
 svg {
 // filter doesn't work here
 }
 }
 }
 }
 }
 }
 */
.featured_recipe .flex {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .featured_recipe .flex {
    flex-wrap: wrap;
  }
}
.featured_recipe .flex .image {
  width: 47%;
}
.featured_recipe .flex .image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .featured_recipe .flex .image {
    width: 100%;
    margin-bottom: 20px;
  }
}
.featured_recipe .flex .left {
  width: 53%;
  padding-right: 80px;
  padding-bottom: 150px;
  padding-top: 1em;
  position: relative;
}
.featured_recipe .flex .left .accent {
  font-size: 40px;
  margin: 0;
  position: relative;
}
.featured_recipe .flex .left h1 {
  margin-top: 0;
  margin-bottom: 0.25em;
  position: relative;
}
@media (max-width: 1479px) {
  .featured_recipe .flex .left h1 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .featured_recipe .flex .left h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .featured_recipe .flex .left h1 {
    font-size: 32px;
  }
}
.featured_recipe .flex .left .counter {
  position: absolute;
  left: -100px;
  top: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 1480px) and (max-width: 1600px) {
  .featured_recipe .flex .left .counter {
    left: -45px;
  }
}
@media (max-width: 1479px) {
  .featured_recipe .flex .left .counter {
    left: -70px;
  }
}
@media screen and (max-width: 1439px) {
  .featured_recipe .flex .left .counter {
    left: -50px;
  }
}
@media screen and (max-width: 1199px) {
  .featured_recipe .flex .left .counter {
    top: 62px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1300px) {
  .featured_recipe .flex .left .counter {
    left: -12px;
  }
}
.featured_recipe .flex .left .counter .number {
  font-family: 'Vanguard', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 30px;
  margin-right: 10px;
  font-weight: 300;
}
@media screen and (min-width: 1480px) and (max-width: 1600px) {
  .featured_recipe .flex .left .counter .number {
    margin-right: 5px;
  }
}
@media screen and (max-width: 1439px) {
  .featured_recipe .flex .left .counter .number {
    margin-right: 5px;
  }
}
.featured_recipe .flex .left .counter .line {
  height: 1px;
  width: 52px;
  background-color: black;
}
@media screen and (min-width: 1480px) and (max-width: 1600px) {
  .featured_recipe .flex .left .counter .line {
    width: 10px;
  }
}
@media (max-width: 1479px) {
  .featured_recipe .flex .left .counter .line {
    width: 28px;
  }
}
@media screen and (max-width: 1439px) {
  .featured_recipe .flex .left .counter .line {
    width: 20px;
  }
}
@media screen and (max-width: 1050px) {
  .featured_recipe .flex .left .counter {
    display: none;
  }
}
.featured_recipe .flex .left .description {
  font-size: 24px;
  line-height: 37px;
  margin-bottom: 1.5em;
  position: relative;
}
@media (max-width: 1199px) {
  .featured_recipe .flex .left .description {
    font-size: 18px;
    line-height: 1.5em;
  }
}
@media (max-width: 991px) {
  .featured_recipe .flex .left .description {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .featured_recipe .flex .left {
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1300px) {
  .featured_recipe .flex .left {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .featured_recipe .flex .left {
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.featured_recipe .flex .button_row {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .featured_recipe .flex .button_row {
    text-align: center;
  }
}
.featured_recipe .flex .button_row a {
  display: inline-block;
  width: 100%;
  max-width: 300px;
}
@media (max-width: 991px) {
  .featured_recipe .flex .button_row a {
    padding: 18px 48px;
  }
}
@media (max-width: 1479px) {
  .featured_recipe .flex .button_row {
    margin-top: 70px;
  }
}
@media (max-width: 991px) {
  .featured_recipe .flex .button_row {
    margin-top: 30px;
  }
}
.featured_recipe .flex .recipe_meta {
  position: relative;
}
.recipe_meta {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  font-size: 14px;
}
.recipe_meta a {
  color: #777;
}
.recipe_meta a:hover {
  color: #000;
}
#homepage_about {
  padding: 120px 0;
  background-color: #f7f7f7;
}
#homepage_about .container {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  #homepage_about .container {
    flex-wrap: wrap;
  }
}
#homepage_about .about_social {
  position: absolute;
  top: 10px;
  left: -40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #homepage_about .about_social {
    display: none;
  }
}
#homepage_about .about_social .label {
  writing-mode: vertical-lr;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#homepage_about .about_social .line {
  width: 1px;
  height: 56px;
  background-color: #000;
  display: block;
  margin: 22px 0;
}
#homepage_about .about_social a {
  display: block;
  font-size: 20px;
  margin-bottom: 18px;
}
@media screen and (max-width: 1099px) {
  #homepage_about .about_social {
    display: none;
  }
}
#homepage_about .about_social.mobile {
  display: flex;
  position: static;
  flex-direction: row;
  justify-content: space-between;
  max-width: 450px;
  margin: 0.5em auto;
}
@media screen and (min-width: 1100px) {
  #homepage_about .about_social.mobile {
    display: none;
  }
}
#homepage_about .about_social.mobile .label {
  writing-mode: unset;
}
#homepage_about .about_social.mobile .line {
  height: 1px;
  width: 20px;
}
#homepage_about .about_social.mobile a {
  margin-bottom: 0;
}
#homepage_about .image {
  width: 42%;
}
#homepage_about .image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #homepage_about .image {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  #homepage_about .image img {
    max-width: 450px;
  }
}
#homepage_about .right {
  padding-left: 55px;
  width: 58%;
}
@media screen and (max-width: 767px) {
  #homepage_about .right {
    width: 100%;
    padding-left: 0;
  }
}
#homepage_about .right h2 {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #homepage_about .right h2 {
    font-size: 39px;
  }
}
#homepage_about .right .accent {
  margin-top: 0.6em;
  font-size: 48px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #homepage_about .right .accent {
    font-size: 37px;
  }
}
#homepage_about .right p {
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  #homepage_about .right p {
    font-size: 16px;
  }
}
#homepage_about .right p a {
  text-decoration: underline;
}
#homepage_about .subheading {
  margin-top: 2.25em;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#homepage_about .flex {
  display: flex;
  justify-content: space-between;
}
#homepage_about .flex a {
  width: calc(50% - 14px);
  display: block;
  border-top: 4px solid #000;
}
#homepage_about .flex a .image {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #homepage_about .flex a .image {
    margin-bottom: 0;
  }
}
#homepage_about .flex a h4 {
  font-size: 30px;
  margin-bottom: 0;
  margin-top: 0.5em;
  font-family: 'Vanguard', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
}
#homepage_about .flex a h4 svg {
  position: relative;
  -webkit-transition: 150ms ease-in-out all;
  transition: 150ms ease-in-out all;
  left: 10px;
}
@media screen and (max-width: 767px) {
  #homepage_about .flex a h4 svg {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #homepage_about .flex a h4 {
    font-size: 24px;
  }
}
#homepage_about .flex a:hover h4 svg {
  left: 15px;
}
.browser-Explorer #homepage_about .about_social {
  position: absolute;
  top: 10px;
  left: -40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.browser-Explorer #homepage_about .about_social .label {
  transform: rotate(90deg);
  transform-origin: 0 0 0;
  width: 210px;
  /* height: 195px; */
  position: absolute;
  left: 19px;
}
.browser-Explorer #homepage_about .about_social .line {
  margin-top: 230px;
}
#featured_eats {
  padding: 90px 0;
  background-color: #f7f7f7;
}
@media screen and (max-width: 991px) {
  #featured_eats .container {
    padding: 0 30px;
  }
}
#featured_eats h2 {
  text-align: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  #featured_eats h2 {
    font-size: 40px;
  }
}
#featured_eats .flex {
  width: calc(100% + 50px);
  margin-left: -25px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #featured_eats .flex {
    width: calc(100% + 40px);
    margin-left: -20px;
    display: flex;
    flex-wrap: wrap;
  }
}
#featured_eats .flex a {
  width: 25%;
  padding: 30px 25px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #featured_eats .flex a {
    width: 50%;
  }
}
#featured_eats .flex a .image {
  width: 100%;
}
#featured_eats .flex a .image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 6px solid transparent;
}
#featured_eats .flex a span {
  font-family: 'Vanguard', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  font-size: 42px;
  text-align: center;
  margin-top: 0.5em;
  padding-bottom: 10px;
  border-bottom: 6px solid transparent;
}
@media screen and (max-width: 991px) {
  #featured_eats .flex a span {
    font-size: 32px;
    padding-bottom: 6px;
  }
}
#featured_eats .flex a:hover .image img {
  border: 4px solid #000;
}
#featured_eats .flex a:hover span {
  border-bottom: 4px solid black;
  color: #000;
}
@media screen and (max-width: 991px) {
  #featured_eats .flex a {
    padding: 20px 10px;
  }
}
#browse_by_season {
  padding: 80px 0 160px;
}
@media screen and (max-width: 767px) {
  #browse_by_season {
    padding-bottom: 80px;
  }
}
#browse_by_season h2.accent {
  text-align: center;
  margin: 0 auto 1em;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  #browse_by_season h2.accent {
    font-size: 40px;
  }
}
#browse_by_season .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  max-width: 1730px;
}
@media screen and (max-width: 1730px) {
  #browse_by_season .container {
    width: 100%;
  }
}
#browse_by_season .container a {
  width: 25%;
  padding: 0 15px;
  position: relative;
}
#browse_by_season .container a img {
  width: 100%;
  height: auto;
  border-top: 4px solid transparent;
}
#browse_by_season .container a h2 {
  position: absolute;
  bottom: 0;
  width: calc(100% - 72px);
  background-color: white;
  text-align: center;
  left: 36px;
  font-size: 4.2vw;
  padding: 0 0 0.1em;
  margin: 0;
}
#browse_by_season .container a .view {
  opacity: 0;
  text-align: center;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  text-align: center;
}
#browse_by_season .container a .view .line {
  width: 2px;
  height: 34px;
  display: inline-block;
  margin-bottom: 10px;
  background-color: #000;
}
#browse_by_season .container a .view .label {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
#browse_by_season .container a .view .label svg {
  transform: scale(0.5);
  margin-left: 6px;
}
#browse_by_season .container a:hover {
  color: #000;
}
#browse_by_season .container a:hover img {
  border-top-color: #000;
}
#browse_by_season .container a:hover .view {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #browse_by_season .container a {
    width: 50%;
    padding: 0 15px;
    position: relative;
    margin-bottom: 20px;
  }
  #browse_by_season .container a .view {
    display: none;
  }
  #browse_by_season .container a h2 {
    font-size: 10vw;
    width: calc(100% - 48px);
    left: 24px;
  }
}
#most_popular {
  padding: 85px 0;
}
@media screen and (max-width: 767px) {
  #most_popular {
    padding-top: 20px;
  }
}
#most_popular .container {
  display: flex;
}
@media screen and (max-width: 767px) {
  #most_popular .container {
    flex-wrap: wrap;
  }
}
#most_popular .container .left {
  width: 440px;
}
@media screen and (max-width: 1199px) {
  #most_popular .container .left {
    width: 360px;
  }
}
@media screen and (max-width: 767px) {
  #most_popular .container .left {
    width: 100%;
  }
}
#most_popular .container .left h2 {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  #most_popular .container .left h2 {
    font-size: 36px;
    text-align: center;
  }
}
#most_popular .container .left .popular_list a {
  display: block;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  padding: 0.75em 0;
  font-size: 18px;
}
#most_popular .container .left .popular_list a:hover, #most_popular .container .left .popular_list a.active {
  text-decoration: underline;
  color: #000;
}
@media screen and (max-width: 767px) {
  #most_popular .container .left .popular_list a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #most_popular .container .left .popular_list {
    margin-bottom: 30px;
  }
}
#most_popular .container .right {
  width: calc(100% - 440px);
}
@media screen and (max-width: 1199px) {
  #most_popular .container .right {
    width: calc(100% - 360px);
  }
}
@media screen and (max-width: 767px) {
  #most_popular .container .right {
    width: 100%;
  }
}
#most_popular .container .right .popular_section {
  display: none;
}
#most_popular .container .right .popular_section.active {
  display: block;
  animation: rightFadeUp 500ms ease;
}
#most_popular .container .right .popular_section .flex-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#most_popular .container .right .popular_section .flex-grid a {
  width: calc(50% - 16px);
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #most_popular .container .right .popular_section .flex-grid a {
    width: 100%;
    margin-bottom: 20px;
  }
}
#most_popular .container .right .popular_section .flex-grid a img {
  width: 100%;
  height: auto;
  border-top: 6px solid transparent;
}
#most_popular .container .right .popular_section .flex-grid a div {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
  opacity: 0;
  text-align: center;
  padding: 20px 0 30px;
}
#most_popular .container .right .popular_section .flex-grid a div h3 {
  margin: 0 auto 20px;
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  #most_popular .container .right .popular_section .flex-grid a div h3 {
    font-size: 32px;
  }
}
#most_popular .container .right .popular_section .flex-grid a div .label {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
#most_popular .container .right .popular_section .flex-grid a div .label svg {
  transform: scale(0.5);
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  #most_popular .container .right .popular_section .flex-grid a div .label {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #most_popular .container .right .popular_section .flex-grid a div {
    opacity: 1;
  }
}
#most_popular .container .right .popular_section .flex-grid a:hover {
  color: #000;
}
#most_popular .container .right .popular_section .flex-grid a:hover img {
  border-top-color: #000;
}
#most_popular .container .right .popular_section .flex-grid a:hover div {
  opacity: 1;
}
@keyframes rightFadeUp {
  0% {
    padding-top: 20px;
    opacity: 0;
  }
  100% {
    padding-top: 0px;
    opacity: 1;
  }
}
#quick_recipe {
  padding: 40px;
  padding-top: 95px;
}
@media screen and (max-width: 767px) {
  #quick_recipe {
    padding: 20px;
  }
}
#quick_recipe .container {
  border: 2px solid #000;
  border-top: 6px solid #000;
}
#quick_recipe p.choices {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  display: flex;
}
@media screen and (max-width: 1479px) {
  #quick_recipe p.choices {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  #quick_recipe p.choices {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  #quick_recipe p.choices {
    font-size: 20px;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  #quick_recipe p.choices {
    flex-wrap: wrap;
  }
}
#quick_recipe p.choices span.label {
  flex: auto;
  font-size: 60px;
  font-family: 'vosten', sans-serif;
  letter-spacing: 0em;
  font-weight: normal;
  text-transform: none;
  background-color: none;
  border: none;
  border-bottom: 1px solid #000;
  text-transform: lowercase;
  position: relative;
  text-align: left;
  padding: 0 0.25em;
  margin-left: 20px;
  bottom: 10px;
}
#quick_recipe p.choices span.label .qr_text {
  line-height: 0;
  display: inline-block;
  position: relative;
  bottom: -13px;
}
@media screen and (max-width: 767px) {
  #quick_recipe p.choices span.label .qr_text {
    bottom: -4px;
  }
}
@media (max-width: 991px) {
  #quick_recipe p.choices span.label {
    font-size: 40px;
    bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  #quick_recipe p.choices span.label {
    width: 100%;
    margin: 30px 10px 0;
  }
}
#quick_recipe p.choices select {
  color: transparent;
  position: absolute;
  right: 0;
  width: 100%;
  font-size: 16px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-image: url('../svg/large_dropdown_arrow.svg');
  background-position: 100% calc(100% - 12px);
  background-repeat: no-repeat;
  background-size: 30px;
}
@media (max-width: 1199px) {
  #quick_recipe p.choices select {
    top: -10px;
  }
}
@media (max-width: 991px) {
  #quick_recipe p.choices select {
    padding: 6px;
    top: -25px;
  }
}
#quick_recipe .carousels .carousel_wrapper {
  height: 0;
  opacity: 0;
  overflow: hidden;
  animation: carouselFadeOut 1s ease;
}
#quick_recipe .carousels .carousel_wrapper.active {
  height: 100%;
  opacity: 1;
  animation: carouselFade 1s ease;
}
#quick_recipe .carousels .carousel_wrapper .owl-stage {
  display: flex;
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe {
  padding: 10px;
  height: 100%;
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe .inner {
  -webkit-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  background-color: #f7f7f7;
  height: 100%;
  padding-bottom: 100px;
  position: relative;
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe .inner:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, .5);
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe img {
  width: 100%;
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe .text {
  padding: 28px 30px 0px;
}
@media screen and (max-width: 767px) {
  #quick_recipe .carousels .carousel_wrapper .qr_recipe .text {
    font-size: 16px;
  }
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe .text .button_row {
  margin-bottom: 0;
  position: absolute;
  bottom: 15px;
  left: 13px;
  width: calc(100% - 26px);
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe .text .button_row .button {
  display: block;
  background-color: transparent;
  font-size: 18px;
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe .text .button_row .button:hover {
  background-color: #000;
}
@media screen and (max-width: 1024px) {
  #quick_recipe .carousels .carousel_wrapper .qr_recipe .text .button_row .button {
    font-size: 16px;
  }
}
#quick_recipe .carousels .carousel_wrapper .qr_recipe .text h3 {
  font-size: 42px;
  margin: 10px 0;
}
@media (max-width: 1199px) {
  #quick_recipe .carousels .carousel_wrapper .qr_recipe .text h3 {
    font-size: 30px;
  }
}
#quick_recipe .owl-controls {
  position: absolute;
  right: 10px;
  bottom: -60px;
}
@media screen and (max-width: 767px) {
  #quick_recipe .owl-controls {
    width: 100%;
    right: auto;
  }
}
#quick_recipe .owl-controls .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 135px;
}
@media screen and (max-width: 767px) {
  #quick_recipe .owl-controls .owl-nav {
    width: 100%;
  }
}
#quick_recipe .owl-controls .owl-nav > div {
  display: flex;
  align-items: center;
}
#quick_recipe .owl-controls .owl-nav > div .text {
  font-size: 14px;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  display: none;
}
#quick_recipe .owl-controls .owl-nav > div:hover {
  color: #000;
}
#quick_recipe .owl-controls .owl-nav > div:hover .text {
  color: #000;
}
#quick_recipe .owl-controls .owl-nav .arrow {
  background-color: white;
  border: 2px solid white;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url('../png/arrow_left_black%402x.png');
}
#quick_recipe .owl-controls .owl-nav > div:hover .arrow {
  background-color: black;
  background-image: url('../png/arrow_left_white%402x.png');
}
#quick_recipe .owl-controls .owl-nav .owl-next .arrow {
  background-image: url('../png/arrow_right_black%402x.png');
}
#quick_recipe .owl-controls .owl-nav .owl-next:hover .arrow {
  background-color: black;
  background-image: url('../png/arrow_right_white%402x.png');
}
#quick_recipe .view_all_link {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 10px;
  font-size: 14px;
  margin: 28px 0 36px;
}
#quick_recipe .view_all_link a {
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  #quick_recipe .view_all_link {
    margin: 80px auto 20px;
    width: 100%;
    text-align: center;
  }
}
.browser-Explorer #quick_recipe p.choices select {
  opacity: 0;
  height: 55px;
}
@keyframes carouselFade {
  0% {
    height: 0;
    opacity: 0;
  }
  1% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
@keyframes carouselFadeOut {
  0% {
    height: 100%;
    opacity: 1;
  }
  1% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
#homepage_signup {
  padding: 30px 0 70px;
}
#homepage_signup .gform_wrapper span.gform_description {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1479px) {
  #homepage_signup .gform_wrapper span.gform_description {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  #homepage_signup .gform_wrapper span.gform_description {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  #homepage_signup .gform_wrapper span.gform_description {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
#homepage_signup .gform_wrapper span.gform_description span {
  font-size: 60px;
  font-family: 'vosten', sans-serif;
  letter-spacing: 0em;
  font-weight: normal;
  text-transform: none;
  font-size: 47px;
  padding: 0 0.25em 0 0.1em;
}
@media screen and (max-width: 1479px) {
  #homepage_signup .gform_wrapper span.gform_description span {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  #homepage_signup .gform_wrapper span.gform_description span {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  #homepage_signup .gform_wrapper span.gform_description span {
    display: block;
    padding-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  #homepage_signup .gform_wrapper span.gform_description {
    line-height: 34px;
  }
}
#homepage_signup #gform_1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  #homepage_signup #gform_1 {
    justify-content: center;
  }
}
#homepage_signup #gform_1 .gform_heading {
  width: 54%;
  margin-bottom: 0em;
}
@media (max-width: 991px) {
  #homepage_signup #gform_1 .gform_heading {
    width: 100%;
    text-align: center;
  }
}
#homepage_signup #gform_1 .gform_body {
  width: calc(46% - 146px);
}
#homepage_signup #gform_1 .gform_body li {
  margin: 0;
}
#homepage_signup #gform_1 .gform_body input[type="text"] {
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #777;
  width: 100%;
  line-height: 50px;
  margin: 0;
  padding: 0 0.5em;
  height: 50px;
}
@media (max-width: 991px) {
  #homepage_signup #gform_1 .gform_body {
    width: calc(60% - 146px);
  }
}
@media screen and (max-width: 767px) {
  #homepage_signup #gform_1 .gform_body {
    width: 100%;
    max-width: 300px;
  }
}
#homepage_signup #gform_1 .gform_footer {
  width: 128px;
  padding: 0;
  padding-top: 20px;
}
#homepage_signup #gform_1 .gform_footer input[type="submit"] {
  background-color: transparent;
  display: block;
  width: 100%;
  line-height: 50px;
  margin: 0;
  padding: 0;
}
#homepage_signup #gform_1 .gform_footer input[type="submit"]:hover {
  color: white;
  background-color: #000;
  border-color: #000;
}
#gform_2 .gform_footer {
  text-align: right;
}
#gform_2 .gform_footer input[type="submit"] {
  background-color: #000;
  color: #fff;
}
#gform_2 .gform_footer input[type="submit"]:hover {
  background-color: #fff;
  color: #000;
}
.search_row_shortcode {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 72px auto 30px;
}
@media screen and (max-width: 1199px) {
  .search_row_shortcode {
    flex-wrap: wrap;
  }
}
.search_row_shortcode > .button {
  color: #000;
  text-decoration: none;
  width: 230px;
  padding: 0;
  line-height: 63px;
  height: 63px;
  text-align: center;
  font-weight: bold;
}
.search_row_shortcode > .button:hover {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .search_row_shortcode > .button {
    display: inline-block;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .search_row_shortcode > .button {
    max-width: 100%;
  }
}
.search_row_shortcode .aasearchform {
  max-width: 100%;
  border: 2px solid #000;
  width: calc(100% - 256px);
  height: 63px;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .search_row_shortcode .aasearchform {
    width: 100%;
    margin-top: 20px;
  }
}
.search_row_shortcode .aasearchform input {
  line-height: 59px;
  min-height: 59px;
  font-weight: 400;
}
.search_row_shortcode .aasearchform button {
  line-height: 63px;
}
#sidebar #text-59 {
  padding: 0;
  margin: 0;
  border-top: none;
}
.entry-single.post .entry-header {
  max-width: 640px;
}
.entry-single.post .entry-header .entry-title {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .entry-single.post .entry-header .entry-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .entry-single.post .entry-header .entry-title {
    font-size: 50px;
    margin-top: 0.25em;
  }
}
.entry-single.post .entry-header .short_description {
  font-size: 24px;
  line-height: 37px;
  margin: 1.2em auto;
}
@media screen and (max-width: 1023px) {
  .entry-single.post .entry-header .short_description {
    font-size: 18px;
    line-height: 30px;
  }
}
.entry-single.post .entry-header .mv_recipe_link_wrapper {
  margin-top: 1.2em;
  font-weight: bold;
}
.entry-single.post .entry-header .mv_recipe_link_wrapper .button {
  padding-left: 30px;
  padding-right: 30px;
}
.entry-single.post .entry-content {
  position: relative;
}
.entry-single.post .share-buttons {
  position: absolute;
  top: 10px;
  left: -60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1099px) {
  .entry-single.post .share-buttons {
    position: static;
    flex-direction: row;
    margin: 2em auto;
  }
}
.entry-single.post .share-buttons .label {
  writing-mode: vertical-lr;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1099px) {
  .entry-single.post .share-buttons .label {
    writing-mode: unset;
  }
}
.entry-single.post .share-buttons .line {
  width: 1px;
  height: 56px;
  background-color: #000;
  display: block;
  margin: 22px 0;
}
@media screen and (max-width: 1099px) {
  .entry-single.post .share-buttons .line {
    height: 1px;
    width: 56px;
    margin: 0 22px;
  }
}
.entry-single.post .share-buttons a {
  display: block;
  font-size: 20px;
  margin-bottom: 18px;
}
@media screen and (max-width: 1099px) {
  .entry-single.post .share-buttons a {
    margin-bottom: 0;
    margin-right: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .browser-Explorer .entry-single.post .share-buttons {
    position: absolute;
    top: 10px;
    left: -40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .browser-Explorer .entry-single.post .share-buttons .label {
    transform: rotate(90deg);
    transform-origin: 0 0 0;
    width: 60px;
    /* height: 195px; */
    position: absolute;
    left: 19px;
  }
  .browser-Explorer .entry-single.post .share-buttons .line {
    margin-top: 80px;
  }
}
#recipe_footer .meta_row {
  display: flex;
  margin: 48px 0 36px;
  border-top: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  padding: 25px 0;
}
#recipe_footer .meta_row div:first-of-type {
  margin-right: 50px;
}
#recipe_footer .meta_row .label {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  font-size: 16px;
}
#recipe_footer .meta_row a, #recipe_footer .meta_row .tag_list {
  font-size: 16px;
  color: #777;
}
#recipe_footer .meta_row a:hover, #recipe_footer .meta_row .tag_list:hover {
  color: #000;
}
#pairings h3.pairing_heading {
  font-size: 60px;
  font-family: 'vosten', sans-serif;
  letter-spacing: 0em;
  font-weight: normal;
  text-transform: none;
  font-size: 40px;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
#pairings .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#pairings .flex a {
  width: calc(50% - 16px);
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width: 1023px) {
  #pairings .flex a {
    width: 100%;
    margin-bottom: 20px;
  }
}
#pairings .flex a img {
  width: 100%;
  height: auto;
}
#pairings .flex a div {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
  opacity: 0;
  text-align: center;
  padding: 20px 0 30px;
}
#pairings .flex a div h3 {
  margin: 0 auto 20px;
  font-size: 42px;
}
@media screen and (max-width: 1099px) {
  #pairings .flex a div h3 {
    font-size: 32px;
  }
}
#pairings .flex a div .label {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
#pairings .flex a div .label svg {
  transform: scale(0.5);
  margin-left: 6px;
}
@media screen and (max-width: 1099px) {
  #pairings .flex a div .label {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  #pairings .flex a div {
    opacity: 1;
  }
}
#pairings .flex a:hover {
  color: #000;
}
#pairings .flex a:hover div {
  opacity: 1;
}
#back_to_top {
  text-align: right;
  margin: 38px 0 62px;
}
#back_to_top a:hover {
  opacity: 0.7;
}
#sidebar_btf_wrapper {
  max-width: 100% !important;
}
/* ACF BLOCKS BELOW THIS LINE */
/* DEFAULT GUTENBERG BLOCKS BELOW THIS LINE */
.wp-block-cover {
  position: relative;
  min-height: 430px;
  width: 100%;
  margin: 0 0 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
  background-position: 50%;
}
.wp-block-cover p {
  color: #fff;
  line-height: 1.2;
  z-index: 1;
  margin-bottom: 0;
  max-width: 610px;
  padding: 14px;
  text-align: center;
  font-family: inherit;
  font-size: 40px;
  font-weight: 400;
}
.wp-block-cover.has-text-align-center {
  justify-content: flex-start;
}
.wp-block-cover.has-text-align-center p {
  text-align: center;
  max-width: 100%;
}
.wp-block-cover.has-left-content {
  justify-content: flex-start;
}
.wp-block-cover.has-left-content p {
  text-align: left;
}
.wp-block-cover.has-right-content {
  justify-content: flex-end;
}
.wp-block-cover.has-right-content p {
  text-align: right;
}
.wp-block-image {
  margin: 0 0 1.5em;
  padding: 0;
}
.wp-block-image figcaption {
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  color: inherit;
  font-size: 16px;
}
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}
.wp-block-gallery .blocks-gallery-item {
  margin: 0 16px 16px 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: calc((100% - 32px)/3);
  width: 30%;
}
.wp-block-gallery .blocks-gallery-item figure {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0;
  height: 100%;
}
.wp-block-gallery .blocks-gallery-item figure figcaption {
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3) 60%, transparent);
}
.wp-block-gallery .blocks-gallery-item figure img {
  height: 100%;
  flex: 1;
  object-fit: cover;
  width: 100%;
}
.wp-block-file .wp-block-file__button {
  margin-left: 25px;
}
.wp-block-video {
  margin-left: 0;
  margin-right: 0;
}
.wp-block-video video {
  width: 100%;
  max-width: 100%;
}
.wp-block-video figcaption {
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  color: inherit;
  font-size: 16px;
}
.wp-block-button {
  margin-bottom: 25px;
}
.wp-block-media-text {
  display: grid;
  grid-template-rows: auto;
  align-items: center;
  grid-template-areas: "media-text-media media-text-content";
  grid-template-columns: 50% auto;
  margin: 25px 0;
  min-height: 250px;
}
.wp-block-media-text.has-media-on-the-right {
  grid-template-areas: "media-text-content media-text-media";
  grid-template-columns: auto 50%;
}
.wp-block-media-text .wp-block-media-text__media {
  grid-area: media-text-media;
  margin: 0;
  height: 100%;
}
.wp-block-media-text .wp-block-media-text__media img, .wp-block-media-text .wp-block-media-text__media video {
  max-width: unset;
  width: 100%;
  vertical-align: middle;
}
.wp-block-media-text .wp-block-media-text__media img {
  height: auto;
  max-width: 100%;
  position: relative;
  height: 100%;
  flex: 1;
  object-fit: cover;
  width: 100%;
}
.wp-block-media-text .wp-block-media-text__content {
  word-break: break-word;
  grid-area: media-text-content;
  padding: 0 8%;
}
.wp-block-categories, .wp-block-archives, .wp-block-latest-posts, .wp-block-categories__list {
  list-style: none;
  padding-left: 0 !important;
}
.wp-block-latest-comments {
  list-style: none;
}
.wp-block-latest-comments .wp-block-latest-comments__comment {
  border-bottom: 1px solid #777;
  padding: 15px 0px;
}
.wp-block-latest-comments .wp-block-latest-comments__comment img {
  float: left;
  width: 75px;
  height: 75px;
  margin-right: 20px;
  border-radius: 50%;
}
.wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-author {
  font-size: 18px;
  letter-spacing: 0.1px;
}
.wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-date {
  display: block;
  letter-spacing: 0.1px;
  font-size: 14px;
  text-transform: uppercase;
  color: inherit;
}
.wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
  position: relative;
  overflow: hidden;
}
.wp-block-latest-comments .wp-block-latest-comments__comment footer {
  background: transparent;
  margin: 0 0 0.75em;
  padding: 0;
}
.wp-block-embed {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%;
}
.wp-block-embed:before {
  content: "";
  display: block;
}
.wp-block-embed iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.wp-block-embed figcaption {
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
}
.wp-block-quote {
  border-left: 4px solid #000;
  margin: 0 0 28px;
  padding-left: 1em;
}
/*-----------------------------------------------------------------------------------*/
/*  FLEX GRID
 /*-----------------------------------------------------------------------------------*/
/* Flex Grid Gutter Space */
.grid, .grid-mobile, .wp-block-columns {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid .cell, .grid-mobile .cell, .wp-block-column {
  flex: 1;
}
@media (min-width: 768px) {
  .grid, .wp-block-columns {
    display: flex;
  }
  .grid.grid-12-col .cell {
    flex: 0 0 calc(8.33% - 18.334px);
  }
  .grid.grid-12-col .cell.span-1 {
    flex: 0 0 calc(10% - 18px);
  }
  .grid.grid-12-col .cell.span-2 {
    flex: 0 0 calc(16.6% - 16.68px);
  }
  .grid.grid-12-col .cell.span-3 {
    flex: 0 0 calc(25% - 15px);
  }
  .grid.grid-12-col .cell.span-4 {
    flex: 0 0 calc(33.3% - 13.34px);
  }
  .grid.grid-12-col .cell.span-5 {
    flex: 0 0 calc(41.6% - 11.68px);
  }
  .grid.grid-12-col .cell.span-6 {
    flex: 0 0 calc(50% - 10px);
  }
  .grid.grid-12-col .cell.span-7 {
    flex: 0 0 calc(58.3% - 8.34px);
  }
  .grid.grid-12-col .cell.span-8 {
    flex: 0 0 calc(66.6% - 6.68px);
  }
  .grid.grid-12-col .cell.span-9 {
    flex: 0 0 calc(75% - 5px);
  }
  .grid.grid-12-col .cell.span-10 {
    flex: 0 0 calc(83.3% - 3.34px);
  }
  .grid.grid-12-col .cell.span-11 {
    flex: 0 0 calc(90% - 2px);
  }
  .grid.grid-12-col .cell.span-12 {
    flex: 0 0 100%;
  }
  .grid.grid-2-col .cell, .wp-block-columns.has-2-columns .wp-block-column {
    flex: 0 0 calc(50% - 10px);
  }
  .grid.grid-2-col .cell.span-2, .wp-block-columns.has-2-columns .wp-block-column.span-2 {
    flex: 0 0 100%;
  }
  .grid.grid-3-col .cell, .wp-block-columns.has-3-columns .wp-block-column {
    flex: 0 0 calc(33.33% - 13.334px);
  }
  .grid.grid-3-col .cell.span-2, .wp-block-columns.has-3-columns .wp-block-column.span-2 {
    flex: 0 0 calc(66.66% - 6.668px);
  }
  .grid.grid-3-col .cell.span-3, .wp-block-columns.has-3-columns .wp-block-column.span-3 {
    flex: 0 0 100%;
  }
  .grid.grid-4-col .cell, .wp-block-columns.has-4-columns .wp-block-column {
    flex: 0 0 calc(25% - 15px);
  }
  .grid.grid-4-col .cell.span-2, .wp-block-columns.has-4-columns .wp-block-column.span-2 {
    flex: 0 0 calc(50% - 10px);
  }
  .grid.grid-4-col .cell.span-3, .wp-block-columns.has-4-columns .wp-block-column.span-3 {
    flex: 0 0 calc(75% - 5px);
  }
  .grid.grid-4-col .cell.span-4, .wp-block-columns.has-4-columns .wp-block-column.span-4 {
    flex: 0 0 100%;
  }
  .grid.grid-5-col .cell, .wp-block-columns.has-5-columns .wp-block-column {
    flex: 0 0 calc(20% - 16px);
  }
  .grid.grid-5-col .cell.span-2, .wp-block-columns.has-5-columns .wp-block-column.span-2 {
    flex: 0 0 calc(40% - 12px);
  }
  .grid.grid-5-col .cell.span-3, .wp-block-columns.has-5-columns .wp-block-column.span-3 {
    flex: 0 0 calc(60% - 8px);
  }
  .grid.grid-5-col .cell.span-4, .wp-block-columns.has-5-columns .wp-block-column.span-4 {
    flex: 0 0 calc(80% - 4px);
  }
  .grid.grid-5-col .cell.span-5, .wp-block-columns.has-5-columns .wp-block-column.span-5 {
    flex: 0 0 100%;
  }
  .grid.grid-6-col .cell, .wp-block-columns.has-6-columns .wp-block-column {
    flex: 0 0 calc(16.66% - 16.668px);
  }
  .grid.grid-6-col .cell.span-2, .wp-block-columns.has-6-columns .wp-block-column.span-2 {
    flex: 0 0 calc(40% - 12px);
  }
  .grid.grid-6-col .cell.span-3, .wp-block-columns.has-6-columns .wp-block-column.span-3 {
    flex: 0 0 calc(60% - 8px);
  }
  .grid.grid-6-col .cell.span-4, .wp-block-columns.has-6-columns .wp-block-column.span-4 {
    flex: 0 0 calc(80% - 4px);
  }
  .grid.grid-6-col .cell.span-5, .wp-block-columns.has-6-columns .wp-block-column.span-5 {
    flex: 0 0 calc(100% - 0px);
  }
  .grid.grid-6-col .cell.span-6, .wp-block-columns.has-6-columns .wp-block-column.span-6 {
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .grid-mobile {
    display: flex;
  }
  .grid-mobile.grid-mobile-2-col .cell, .wp-block-columns.has-2-columns .wp-block-column {
    flex: 0 0 calc(50% - 10px);
  }
  .grid-mobile.grid-mobile-2-col .cell.span-2, .wp-block-columns.has-2-columns .wp-block-column.span-2 {
    flex: 0 0 100%;
  }
  .grid-mobile.grid-mobile-3-col .cell, .wp-block-columns.has-3-columns .wp-block-column {
    flex: 0 0 calc(33.33% - 13.334px);
  }
  .grid-mobile.grid-mobile-3-col .cell.span-2, .wp-block-columns.has-3-columns .wp-block-column.span-2 {
    flex: 0 0 calc(66.66% - 6.668px);
  }
  .grid-mobile.grid-mobile-3-col .cell.span-3, .wp-block-columns.has-3-columns .wp-block-column.span-3 {
    flex: 0 0 100%;
  }
  .grid-mobile.grid-mobile-4-col .cell, .wp-block-columns.has-4-columns .wp-block-column {
    flex: 0 0 calc(25% - 15px);
  }
  .grid-mobile.grid-mobile-4-col .cell.span-2, .wp-block-columns.has-4-columns .wp-block-column.span-2 {
    flex: 0 0 calc(50% - 10px);
  }
  .grid-mobile.grid-mobile-4-col .cell.span-3, .wp-block-columns.has-4-columns .wp-block-column.span-3 {
    flex: 0 0 calc(75% - 5px);
  }
  .grid-mobile.grid-mobile-4-col .cell.span-4, .wp-block-columns.has-4-columns .wp-block-column.span-4 {
    flex: 0 0 100%;
  }
  .grid-mobile.grid-mobile-5-col .cell, .wp-block-columns.has-5-columns .wp-block-column {
    flex: 0 0 calc(20% - 16px);
  }
  .grid-mobile.grid-mobile-5-col .cell.span-2, .wp-block-columns.has-5-columns .wp-block-column.span-2 {
    flex: 0 0 calc(40% - 12px);
  }
  .grid-mobile.grid-mobile-5-col .cell.span-3, .wp-block-columns.has-5-columns .wp-block-column.span-3 {
    flex: 0 0 calc(60% - 8px);
  }
  .grid-mobile.grid-mobile-5-col .cell.span-4, .wp-block-columns.has-5-columns .wp-block-column.span-4 {
    flex: 0 0 calc(80% - 4px);
  }
  .grid-mobile.grid-mobile-5-col .cell.span-5, .wp-block-columns.has-5-columns .wp-block-column.span-5 {
    flex: 0 0 100%;
  }
  .grid-mobile.grid-mobile-6-col .cell, .wp-block-columns.has-6-columns .wp-block-column {
    flex: 0 0 calc(16.66% - 16.668px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-2, .wp-block-columns.has-6-columns .wp-block-column.span-2 {
    flex: 0 0 calc(40% - 12px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-3, .wp-block-columns.has-6-columns .wp-block-column.span-3 {
    flex: 0 0 calc(60% - 8px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-4, .wp-block-columns.has-6-columns .wp-block-column.span-4 {
    flex: 0 0 calc(80% - 4px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-5, .wp-block-columns.has-6-columns .wp-block-column.span-5 {
    flex: 0 0 calc(100% - 0px);
  }
  .grid-mobile.grid-mobile-6-col .cell.span-6, .wp-block-columns.has-6-columns .wp-block-column.span-6 {
    flex: 0 0 100%;
  }
}
/*-----------------------------------------------------------------------------------*/
/*  FLEXIBLE LAYOUT
 /*-----------------------------------------------------------------------------------*/
/* Flex Layout Padding */
/* Flex Layout Container Width */
/* Background Images: Cover and center */
.layout-section.background_style-image .cls-background, .layout-section.background_style-image .cls-background .cls-mobile-background {
  background-size: cover;
  background-position: center;
}
.layout-section.text_style-light-text h1, .layout-section.text_style-light-text h2, .layout-section.text_style-light-text h3, .layout-section.text_style-light-text h4, .layout-section.text_style-light-text h5, .layout-section.text_style-light-text h6, .layout-section.text_style-light-text p, .layout-section.text_style-light-text ul {
  color: #fff;
}
/* Section Padding */
.layout-section.padding-small .cls-background {
  padding-top: 25px;
  padding-bottom: 25px;
}
.layout-section.padding-medium .cls-background {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .layout-section.padding-medium .cls-background {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.layout-section.padding-large .cls-background {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .layout-section.padding-large .cls-background {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .layout-section.padding-large .cls-background {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
/* Container Width */
.layout-section.container-small .container {
  max-width: 960px;
}
.layout-section.container-full .container {
  max-width: 100%;
}
/* Background images: Replace background for mobile */
@media (min-width: 961px) {
  .layout-section.background_style-image .cls-background.background_mobile-mobile-image-background .cls-mobile-background {
    background-image: none !important;
  }
}
@media (max-width: 960px) {
  .layout-section.background_style-image .cls-background.background_mobile-mobile-image-background {
    background-image: none !important;
  }
}
/* Background images: Remove background and add a new image below for mobile */
@media (min-width: 961px) {
  .layout-section.background_style-image .cls-background.background_mobile-mobile-image-after .cls-mobile-image, .layout-section.background_style-image .cls-background.background_mobile-mobile-image-before .cls-mobile-image {
    display: none !important;
  }
}
@media (max-width: 960px) {
  /* Fix light text against no background */
  .layout-section.background_style-image .cls-background.background_mobile-mobile-image-after .cls-mobile-image, .layout-section.background_style-image .cls-background.background_mobile-mobile-image-before .cls-mobile-image {
    margin-top: 2em;
  }
  .layout-section.background_style-image .cls-background.background_mobile-mobile-image-after, .layout-section.background_style-image .cls-background.background_mobile-mobile-image-before {
    background-image: none !important;
  }
  .layout-section.background_style-image.text_style-light-text .cls-background.background_mobile-mobile-image-after, .layout-section.background_style-image.text_style-light-text .cls-background.background_mobile-mobile-image-before {
    color: #000;
  }
}
/***************************************
 Vendor custom styles
 contains custom styling overrides for plugins/dependancies
 ***************************************/
html .gform_wrapper label.gfield_label, html .gform_wrapper legend.gfield_label {
  font-size: 16px;
  font-weight: 400;
}
html .gform_wrapper label.gfield_label .gfield_required, html .gform_wrapper legend.gfield_label .gfield_required {
  color: #000;
}
html input[type="email"], html input[type="number"], html input[type="search"], html input[type="text"], html input[type="tel"], html input[type="url"], html input[type="password"], html textarea, html select {
  border: 2px solid #000;
  line-height: 57px;
  min-height: 57px;
  padding: 0 0.5em;
}
html .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 0 0.5em;
}
html .gform_wrapper .gform_footer input[type="submit"] {
  font-size: 16px;
  padding: 14px 35px;
}
@media only screen and (max-width: 641px) {
  html .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]):not([type=submit]) {
    line-height: 57px;
    min-height: 57px;
  }
}
html .mv-create-yield {
  font-size: 14px;
}
html .mv-create-has-uppercase .mv-create-uppercase {
  font-weight: bold;
}
html .mv-create-time-format {
  opacity: 1;
  margin-top: 0.5em;
}
html .mv-create-time-label {
  color: #000;
  opacity: 1;
  letter-spacing: 0.1em;
}
html .mv-create-times-3.mv-create-times-lg .mv-create-time, html .mv-create-times-3.mv-create-times-xl .mv-create-time, html .mv-create-times-4.mv-create-times-lg .mv-create-time, html .mv-create-times-5.mv-create-times-lg .mv-create-time, html .mv-create-times-5.mv-create-times-xl .mv-create-time, html .mv-create-times-6.mv-create-times-lg .mv-create-time, html .mv-create-times-6.mv-create-times-xl .mv-create-time {
  border-left-color: #cbcbcb;
}
html .mv-create-card .mv-create-title-primary {
  font-size: 42px;
  line-height: 54px;
  max-width: 390px !important;
  margin: 10px 0 20px;
}
@media screen and (max-width: 767px) {
  html .mv-create-card .mv-create-title-primary {
    font-size: 32px;
    line-height: 34px;
    margin: 20px 0 30px;
  }
}
html .mv-create-card-style-square.mv-create-xl .mv-create-image-container {
  width: 50%;
  max-width: 380px;
  margin-top: -20px;
}
html .mv-create-card .mv-create-title-secondary {
  font-size: 60px;
  font-family: 'vosten', sans-serif;
  letter-spacing: 0em;
  font-weight: normal;
  text-transform: none;
  font-size: 40px;
  margin-top: 1em;
}
html .mv-create-times {
  left: -18px;
  position: relative;
}
html .mv-create-footer {
  display: none;
}
html .mv-create-pin-button {
  position: absolute;
  top: -60px !important;
  right: -60px !important;
  width: 80px !important;
  height: 80px !important;
  padding: 0 !important;
  padding-top: 2px !important;
  border-radius: 40px !important;
  color: #fff !important;
  background-color: #000 !important;
  font-size: 1.3em !important;
  line-height: 40px !important;
  text-align: center !important;
}
html .mv-create-pin-button .mv-icon-pinterest {
  height: 44px;
  width: 44px;
}
/*# sourceMappingURL=style.css.map */