@font-face {
  font-family: 'DINPro';
  font-weight: normal;
  font-style: normal;
  src: url('../assets/webfonts/DINPro.otf') format('opentype');
}
@font-face {
  font-family: 'DINPro-CondMedium';
  font-weight: normal;
  font-style: normal;
  src: url('../assets/webfonts/DINPro-CondMedium.otf') format('opentype');
}
@font-face {
  font-family: 'LearningCurve';
  font-weight: normal;
  font-style: normal;
  src: url('../assets/webfonts/LearningCurve.otf') format('opentype');
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  font-family: 'DINPro', sans-serif;
}
body.noscroll {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
}
.block {
  display: block;
  word-break: break-all;
}
.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-arrow-white {
  width: 24px;
  height: 24px;
  background-size: 40%;
  background-color: #F5AA00;
  border-radius: 50%;
}
.icon-app-store,
.icon-google-play {
  display: inline-block;
  width: 111px;
  height: 36px;
  margin: 5px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-google-play {
  width: 124px;
  height: 36px;
}
.icon-app-store {
  background-image: url('../assets/images/icons/app-store.svg');
}
.icon-google-play {
  background-image: url('../assets/images/icons/google-play.svg');
}
.icon-facebook {
  background-image: url('../assets/images/icons/facebook.png');
}
.icon-facebook-white {
  background-image: url('../assets/images/icons/facebook-white.png');
}
.icon-twitter {
  background-image: url('../assets/images/icons/twitter.png');
}
.icon-twitter-white {
  background-image: url('../assets/images/icons/twitter-white.png');
}
.icon-linkedin-white {
  background-image: url('../assets/images/icons/linkedin-white.png');
}
.icon-mail-white {
  background-image: url('../assets/images/icons/mail-white.png');
}
.icon-instagram {
  background-image: url('../assets/images/icons/instagram.png');
}
.icon-youtube {
  background-image: url('../assets/images/icons/youtube.png');
}
.icon-arrow-white {
  background-image: url('../assets/images/icons/arrow-white.png');
}
.icon-calendar {
  background-image: url('../assets/images/icons/calendar.png');
}
.icon-pdf {
  background-image: url('../assets/images/icons/pdf.png');
}
.icon-clip {
  background-image: url('../assets/images/icons/clip.png');
}
.icon-wechat {
  background-image: url('../assets/images/icons/wechat.png');
}
.icon-weibo {
  background-image: url('../assets/images/icons/weibo.png');
}
.icon-youku {
  background-image: url('../assets/images/icons/youku.png');
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 60px;
}
h5 {
  font-size: 60px;
}
strong {
  color: #A47B27;
  font-weight: 700;
}
p {
  font-size: 16px;
  line-height: 26px;
}
a {
  color: #A47B27;
  text-decoration: none;
  transition: color ease 0.3s;
}
a:hover {
  color: #C42E29;
}
ul.tomatoul {
  list-style: none;
  padding: 0;
}
ul.tomatoul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 16px;
  line-height: 26px;
}
ul.tomatoul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #A47B27;
  position: absolute;
  left: 0;
  top: 10px;
}
table td {
  padding: 8px;
}
.header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: padding ease 0.3s;
  transition: background-color ease 0.3s;
}
@media screen and (max-width: 1024px) {
  .header {
    overflow-y: auto;
  }
}
.admin-bar .header {
  top: 32px;
}
.main-logo {
  max-width: 80px;
}
.main-logo h1 {
  margin: 0;
}
.menu {
  flex: 1;
  margin: 0;
}
.menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.menu ul li {
  display: inline-block;
}
.menu ul li a {
  position: relative;
  margin: 0 20px;
  text-transform: uppercase;
  font-size: 18px;
  color: #A47B27;
}
.menu ul li a[href]:hover {
  color: #C42E29;
}
.menu ul li.current-menu-item > a {
  color: #C42E29;
}
.menu ul li.current-menu-item > a::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 70px;
  height: 20px;
  background-image: url('../assets/images/baffo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
li.menu-item-has-children {
  position: relative;
}
@media screen and (max-width: 1024px) {
  li.menu-item-has-children {
    padding: 0;
    margin: 0;
  }
  li.menu-item-has-children > a {
    display: none !important;
  }
}
li.menu-item-has-children::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: solid 4px transparent;
  border-top-color: #A47B27;
  position: absolute;
  top: 8px;
  right: 3px;
}
@media screen and (max-width: 1024px) {
  li.menu-item-has-children::after {
    content: none;
  }
}
ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 8px;
  transition: transform ease 0.3s;
  transform: translateY(3px);
  background-color: white;
  border-bottom: solid 3px #A47B27;
}
@media screen and (max-width: 1024px) {
  ul.sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent !important;
    border: none;
  }
}
li.menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
ul.sub-menu > li.menu-item {
  display: block;
  width: 100%;
  text-align: left;
}
ul.sub-menu > li.menu-item:hover {
  background-color: #f9f9f9;
}
@media screen and (max-width: 1024px) {
  ul.sub-menu > li.menu-item {
    text-align: center;
  }
  ul.sub-menu > li.menu-item:hover {
    background-color: transparent !important;
  }
}
ul.sub-menu > li.menu-item > a {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #A47B27;
  padding: 10px 20px;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  ul.sub-menu > li.menu-item > a {
    padding: 0;
  }
}
li.menu-item-has-children ul.sub-menu > li.current-menu-item > a {
  color: #C42E29 !important;
}
li.menu-item-has-children ul.sub-menu > li.current-menu-item > a::after {
  content: none;
}
.socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.socials ul li {
  display: inline-block;
}
.socials ul li a {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: white;
  text-align: center;
  border: solid 1px transparent;
  line-height: 26px;
  transition: border-color ease 0.3s;
}
.socials ul li a i {
  width: 14px;
  height: 14px;
}
.socials ul li a:hover {
  border-color: #C42E29;
}
.header-close {
  display: none;
  width: 40px;
  height: 40px;
  color: white;
  position: fixed;
  top: 20px;
  right: 20px;
  background-image: url('../assets/images/icons/close.png');
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.admin-bar .header-close {
  top: 52px;
}
@media screen and (min-width: 1221px) {
  .header.over {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
.header.over .main-logo {
  max-width: 60px;
}
.header.over .menu li a {
  font-size: 18px;
}
.header-mobile {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  padding: 20px 30px;
  z-index: 998;
  transition: padding ease 0.3s;
}
.header-mobile.over {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
}
.header-mobile.over .main-logo {
  max-width: 50px;
}
.header-mobile__title {
  font-size: 24px;
  margin: 0;
  color: #C42E29;
  text-transform: uppercase;
  font-family: din-1451-engschrift-urw, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.header-mobile__title a {
  color: inherit;
}
.header-mobile .main-logo {
  max-width: 60px;
}
.header-mobile .header-burger {
  display: block;
  width: 50px;
}
.header-mobile .header-burger span {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  height: 10px;
  background-color: transparent;
  background-image: url('../assets/images/baffo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header-mobile .header-burger span:last-of-type {
  transform: rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .header-mobile {
    display: flex;
  }
}
.admin-bar .header-mobile {
  position: absolute;
  top: 46px;
}
.menu ul li.wpml-ls-menu-item > a {
  margin: auto 5px;
}
.wpml-ls-menu-item {
  flex: initial;
  width: auto;
  border-bottom: solid 1px transparent;
  transition: border-color ease 0.3s;
  cursor: pointer;
}
.wpml-ls-menu-item.wpml-ls-current-language {
  position: relative;
}
.wpml-ls-menu-item.wpml-ls-current-language::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 30px;
  height: 10px;
  background-image: url('../assets/images/baffo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
  }
  .header.show {
    display: block;
  }
  .header .header-close {
    display: block;
  }
  .header .main-logo {
    display: none;
  }
  .header .menu {
    padding: 30px 20px;
  }
  .header .menu ul li {
    display: block;
    margin-bottom: 30px;
  }
  .header .menu ul li a {
    margin: 0;
  }
  .header .menu ul li a:not(.active) {
    color: white;
  }
  .header .socials {
    margin: 0 auto;
    text-align: center;
  }
  .header .socials li {
    margin: 5px;
  }
  .wpml-ls-menu-item {
    display: block;
    width: 100%;
  }
}
.footer {
  width: 100%;
  padding-top: 200px;
  background-image: url('../assets/images/news-bg.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer__container {
  padding: 0 20px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}
.footer__disclaimer {
  padding: 16px 16px 24px;
}
.footer__disclaimer p {
  margin: 0;
  text-align: center;
  font-size: 10px;
  line-height: 16px;
}
.footer .footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 0 32px;
}
.footer__main-menu {
  margin: 0 0 8px;
}
.footer__main-menu ul {
  list-style: none;
  padding: 0;
}
.footer__main-menu li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 8px;
}
.footer__main-menu li a {
  text-decoration: none;
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
}
.footer__main-menu li a:hover {
  color: #C42E29;
}
.footer__form-links {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.footer__form-links li {
  display: block;
  margin-bottom: 6px;
}
.footer__form-links li:not(:last-of-type) {
  margin-right: 16px;
}
.footer__form-links li a {
  text-decoration: underline;
}
.footer__sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__sub-menu li {
  display: inline-block;
  color: #959595;
  font-size: 14px;
}
.footer__sub-menu li a {
  font-size: 14px;
  color: #959595;
  text-decoration: none;
  padding-right: 5px;
}
.footer__sub-menu li a:hover {
  color: #C42E29;
}
.footer__sub-menu li:not(:last-of-type)::after {
  content: "|";
  padding-left: 5px;
}
.footer__logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer__logos img:first-of-type {
  width: 200px;
  max-width: 48%;
  margin-right: 50px;
}
.footer__logos img:last-of-type {
  width: 400px;
  max-width: 48%;
  margin-top: -70px;
}
.footer__center {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 100px;
  }
  .footer__container {
    background-color: transparent;
  }
  .footer .footer__wrapper {
    flex-wrap: wrap;
    padding: 20px 20px 0;
  }
  .footer__menus {
    margin-bottom: 32px;
  }
  .footer__main-menu {
    margin-bottom: 20px;
  }
  .footer__main-menu li {
    display: block;
    margin-bottom: 15px;
  }
  .footer__form-links {
    margin-bottom: 32px;
  }
  .footer__form-links li {
    display: block;
    margin-bottom: 15px;
  }
  .footer__sub-menu li {
    display: block;
    margin-bottom: 15px;
  }
  .footer__sub-menu li:not(:last-of-type)::after {
    content: "";
  }
  .footer .footer__logos {
    margin-bottom: 24px;
  }
  .footer .footer__logos img:last-of-type {
    display: block;
    max-width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .footer .footer__logos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .footer__logos img:first-of-type {
    display: block;
    width: 200px;
    margin: 20px 0 40px;
  }
  .footer .footer__logos img:last-of-type {
    display: block;
    max-width: 90%;
    margin: 0 auto;
  }
}
.cover {
  display: block;
  width: 100%;
  padding-top: 100px;
  min-height: 100vh;
  text-align: center;
  background-image: url('../assets/images/clouds-gray.jpg');
  background-position: center -20px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 2000px) {
  .cover {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 50vh;
  }
}
@media (max-width: 1023px) {
  .cover {
    min-height: initial;
  }
}
.admin-bar .cover {
  min-height: calc(100vh - 32px);
}
@media (min-width: 2000px) {
  .admin-bar .cover {
    min-height: 50vh;
  }
}
.cover__wrapper {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.cover__container {
  padding-top: 10vh;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  z-index: 1;
}
.cover__container h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 50px;
  font-family: din-1451-engschrift-urw, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #C42E29;
}
@media screen and (max-width: 640px) {
  .cover__container h2 {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 10px;
  }
}
.cover__container h3 {
  margin: 0 0 60px;
  text-transform: uppercase;
  font-size: 40px;
  font-family: din-1451-engschrift-urw, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #A47B27;
}
@media screen and (max-width: 640px) {
  .cover__container h3 {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
.cover__container img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}
@media screen and (max-width: 640px) {
  .cover__container img {
    width: 90%;
    max-width: initial;
    margin-bottom: 100px;
  }
}
.cover .download {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-image: url('../assets/images/bg-red.jpg');
  background-repeat: repeat;
  color: white;
}
.cover .download span {
  font-size: 18px;
  margin-right: 20px;
}
.cover .download .cloud {
  position: absolute;
  bottom: 100%;
  left: 0;
  display: block;
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .cover .download span {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .cover .download {
    position: relative;
  }
}
.head {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px 50px;
  text-align: center;
}
.head__container {
  padding-top: 10vh;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}
.head__container h2 {
  margin: 0 0 20px;
  color: #C42E29;
  text-transform: uppercase;
  font-size: 50px;
  font-family: din-1451-engschrift-urw, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 640px) {
  .head__container h2 {
    font-size: 32px;
  }
}
.head__container h3 {
  margin: 0 0 50px;
  font-size: 32px;
  color: #A47B27;
  letter-spacing: 2px;
}
@media screen and (max-width: 640px) {
  .head__container h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.slider-area {
  overflow: hidden;
  display: block;
}
.slider-area__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 1220px;
  height: 100vh;
  margin: 0 auto;
  padding: 20px 20px 100px;
  position: relative;
}
@media (min-width: 2000px) {
  .slider-area__container {
    height: auto;
  }
}
@media (max-height: 850px) {
  .slider-area__container {
    height: auto;
  }
}
.slider-area__container img.bg {
  position: absolute;
  top: 0;
  height: 110%;
  width: auto;
  right: 30%;
  z-index: -1;
}
.slider-area__content {
  width: 100%;
  max-width: 500px;
  margin: 60px 0 0;
  padding: 0 20px 200px;
  border-left: solid 1px #C42E29;
}
.slider-area__content .title {
  margin-top: 0;
  text-transform: uppercase;
  color: #C42E29;
}
.slider-area__content p {
  line-height: 24px;
}
.slider-area__content a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 32px;
  font-family: 'LearningCurve', sans-serif;
  color: #C42E29;
}
.slider-area__content a:hover {
  color: #F8A800;
}
.slider-area__content i {
  transform: translateY(4px);
}
.slider-area__slider {
  margin-right: -40%;
  text-align: center;
}
.slider-area__slider .slide {
  width: 32%;
  display: inline-block;
  padding: 5px;
}
.slider-area.left .slider-area__container {
  align-items: flex-start;
}
.slider-area.left .slider-area__container img.bg {
  left: 30%;
  right: initial;
}
.slider-area.left .slider-area__container .slider-area__content {
  text-align: right;
  border-left: none;
  border-right: solid 1px #C42E29;
}
.slider-area.left .slider-area__container .slider-area__slider {
  margin-right: initial;
  margin-left: -40%;
}
.slider-area.center .slider-area__container {
  max-width: 1600px;
  align-items: center;
}
.slider-area.center .slider-area__container img.bg {
  position: absolute;
  top: 50%;
  right: initial;
  left: 50%;
  height: 120%;
  transform: translate(-50%, -50%);
}
.slider-area.center .slider-area__container .slider-area__content {
  text-align: center;
  border: none;
  position: relative;
}
.slider-area.center .slider-area__container .slider-area__content::before {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 140%;
  height: 130%;
  background-image: url('../assets/images/cloud-under-text.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.slider-area.center .slider-area__container .slider-area__slider {
  margin: 0 auto;
}
.slider-area.center .slider-area__container .slider-area__slider .slide {
  width: 24%;
}
@media screen and (max-width: 1024px) {
  .slider-area__container {
    height: auto;
    padding: 0;
  }
  .slider-area__container picture,
  .slider-area.left .slider-area__container picture,
  .slider-area.center .slider-area__container picture {
    width: 100%;
  }
  .slider-area__container img.bg,
  .slider-area.left .slider-area__container img.bg,
  .slider-area.center .slider-area__container img.bg {
    display: block;
    position: relative;
    top: initial;
    right: initial;
    left: initial;
    height: auto;
    width: 100%;
    transform: none;
  }
  .slider-area__container .slider-area__content,
  .slider-area.left .slider-area__container .slider-area__content,
  .slider-area.center .slider-area__container .slider-area__content {
    width: 100%;
    margin: 60px auto 0;
    border: none;
    padding-bottom: 20px;
    text-align: center;
  }
  .slider-area__container .slider-area__slider,
  .slider-area.left .slider-area__container .slider-area__slider,
  .slider-area.center .slider-area__container .slider-area__slider {
    margin: 0 auto;
  }
  .slider-area.center .slider-area__container .slider-area__slider .slide {
    width: 48%;
  }
}
.recipes {
  width: 100%;
  z-index: 0;
}
.recipes__norecipes {
  padding: 30px 0;
  color: white;
}
.recipes .clouds-up {
  width: 50%;
  transform: rotateX(180deg);
}
@media screen and (max-width: 640px) {
  .recipes .clouds-up {
    width: 100%;
  }
}
.recipes .clouds-down {
  width: 50%;
  transform: rotateY(180deg) translateX(-100%);
}
@media screen and (max-width: 640px) {
  .recipes .clouds-down {
    transform: rotateY(180deg) translateX(0);
    width: 100%;
  }
}
.recipes__container {
  padding: 20px 20px 0;
  background-image: url('../assets/images/bg-red.jpg');
  background-repeat: repeat;
}
.recipes__container .section-title {
  max-width: 1440px;
  margin: 0 auto 10px;
  font-family: 'LearningCurve', sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: white;
}
.recipes__container .section-subtitle {
  display: block;
  max-width: 1440px;
  margin: 0 auto 20px;
  font-size: 30px;
  letter-spacing: 2px;
  color: #A8BE6D;
}
.recipes__container .section-intro {
  display: block;
  max-width: 1440px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 2px;
  color: white;
}
.recipes__type-title {
  max-width: 1440px;
  margin: 0 auto 24px;
  padding-bottom: 16px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 24px;
}
.recipes__list {
  max-width: 1440px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
}
.recipes__show-more {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: right;
}
.recipes__show-more a:hover {
  color: #F8A800;
}
.recipes__more {
  color: white;
  font-size: 32px;
  font-family: 'LearningCurve', sans-serif;
}
.recipes__more i {
  transform: translateY(4px);
}
.recipes .home-recipe {
  width: 32%;
  height: 450px;
  position: relative;
  padding: 80px 30px 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  margin-right: 2%;
  margin-bottom: 45px;
}
.recipes .home-recipe:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .recipes .home-recipe {
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .recipes .home-recipe:nth-child(3n) {
    margin-right: 30px;
  }
  .recipes .home-recipe:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .recipes .home-recipe {
    width: 100%;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .recipes .home-recipe:nth-child(3n) {
    margin-right: 0;
  }
}
.recipes .home-recipe::after {
  content: "";
  display: block;
  width: 95%;
  height: 95%;
  border: solid 1px white;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: width ease 0.3s, height ease 0.3s;
  transform: translate(-50%, -50%);
}
.recipes .home-recipe::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.recipes .home-recipe .title {
  position: relative;
  display: block;
  margin: 0 auto 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 32px;
  color: white;
  z-index: 2;
  word-break: break-word;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1024px) {
  .recipes .home-recipe .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .recipes .home-recipe .title {
    font-size: 24px;
  }
}
.recipes .home-recipe .title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: white;
  position: absolute;
  left: 50%;
  bottom: 0;
  transition: width ease 0.3s;
  transform: translateX(-50%);
}
.recipes .home-recipe .subtitle {
  display: block;
  text-align: center;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.recipes .home-recipe .category {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 12px;
  color: white;
}
.recipes .home-recipe .minutes {
  position: absolute;
  padding: 5px 10px;
  bottom: 0;
  right: 7%;
  font-size: 18px;
  display: block;
  height: 20%;
  background-color: #A8BE6D;
  color: white;
  transition: height ease 0.2s;
}
.recipes .home-recipe .chef-recipe {
  text-align: center;
  color: white;
  margin-bottom: 16px;
}
.recipes .home-recipe .chef-recipe span {
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 16px;
  background-color: #ffffff80;
  color: #C42E29;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0;
  border-radius: 4px;
}
@media screen and (hover: hover) {
  .recipes .home-recipe:hover::after {
    width: 100%;
    height: 100%;
  }
  .recipes .home-recipe:hover .title::after {
    width: 80%;
  }
  .recipes .home-recipe:hover .minutes {
    height: 16%;
  }
}
@media screen and (max-width: 1024px) {
  .recipes .home-recipe {
    height: 350px;
  }
}
.latest-news {
  padding-top: 100px;
  width: 100%;
}
.latest-news__inside {
  display: flex;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .latest-news__inside {
    display: block;
  }
}
.latest-news__nonews {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}
.latest-news__main-title {
  display: block;
  margin: 0 auto;
  padding: 0 20px;
  width: 30%;
  padding-left: 10%;
}
.latest-news__main-title h2 {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 32px;
  color: #A47B27;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: solid 1px #D8D8D8;
}
@media screen and (max-width: 768px) {
  .latest-news__main-title {
    padding: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 32px;
  }
  .latest-news__main-title h2 {
    border: none;
    margin: 0 auto;
  }
}
.latest-news__container {
  flex: 1;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .latest-news__container {
    flex-wrap: wrap;
  }
}
.latest-news__slider {
  width: 100%;
  overflow-y: auto;
  white-space: nowrap;
}
.latest-news__single {
  display: inline-block;
  width: 300px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #F8F8F8;
  margin: 0 8px;
  outline: none;
}
.latest-news__single img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .latest-news__single img {
    display: block;
  }
}
.latest-news__thumb {
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.latest-news__content {
  padding: 20px 20px;
}
.latest-news__date {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: #F8A800;
}
.latest-news__title {
  margin: 0;
  color: #000000;
  font-size: 18px;
  line-height: 28px;
  white-space: normal;
}
.latest-news__single.first {
  background-color: #393939;
}
.latest-news__single.first .latest-news__title {
  color: white;
}
@media screen and (max-width: 1024px) {
  .latest-news__title {
    font-size: 14px;
    line-height: 24px;
  }
}
.show-all {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: right;
  color: #C42E29;
  font-size: 32px;
  font-family: 'LearningCurve', sans-serif;
}
.show-all a:hover {
  color: #F8A800;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slider {
  position: relative;
}
.slick-slide {
  width: 300px;
  margin-right: 16px;
}
.slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-top: 20px;
  background-position: center;
  background-size: 40%;
  background-repeat: no-repeat;
  background-image: url('../assets/images/icons/arrow.svg');
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
}
.slick-arrow.prev {
  transform: rotate(180deg);
}
.wide-cover {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
  padding-top: 200px;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .wide-cover {
    margin-bottom: 50px;
    padding-top: 30vh;
  }
}
.wide-cover__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  max-height: 400px;
  background-image: url('../assets/images/wide-cover.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .wide-cover__bg {
    height: 30vh;
  }
}
.wide-cover__container {
  width: 60%;
  margin: 0 auto;
  padding: 40px 60px;
  background-color: white;
  box-shadow: 0 -5px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .wide-cover__container {
    width: 80%;
  }
}
@media screen and (max-width: 640px) {
  .wide-cover__container {
    width: 100%;
    padding: 20px;
    box-shadow: none;
  }
}
.wide-cover__container h2 {
  margin: 0 0 30px;
  font-size: 42px;
  color: #A47B27;
}
.benefits {
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 640px) {
  .benefits {
    padding-top: 50px;
  }
}
.benefits__title {
  position: relative;
  overflow: hidden;
  margin: 60px 0 60px 15vw;
}
.benefits__title h2 {
  display: inline-block;
  margin: 0;
  padding-right: 20px;
  padding-left: 10px;
  background-color: white;
  font-family: 'LearningCurve', sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: #C42E29;
}
.benefits__title::after {
  content: "";
  display: block;
  width: 150vw;
  height: 2px;
  background-color: #C42E29;
  position: absolute;
  bottom: 50%;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .benefits__title {
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
  }
  .benefits__title h2 {
    padding: 0;
  }
  .benefits__title::after {
    display: none;
  }
}
.benefits__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
}
.benefits__cell {
  padding: 20px;
  text-align: center;
}
.benefits__cell h3 {
  font-size: 60px;
  color: #A47B27;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .benefits__grid {
    flex-wrap: wrap;
  }
  .benefits__cell {
    width: 48%;
  }
  .benefits__cell:nth-child(odd) {
    margin-right: 4%;
  }
}
@media screen and (max-width: 640px) {
  .benefits__cell {
    width: 100%;
  }
  .benefits__cell:nth-child(odd) {
    margin-right: 0;
  }
}
.book-format {
  display: block;
  margin: 0 auto;
  padding: 120px 20px;
  max-width: 1200px;
}
@media screen and (max-width: 640px) {
  .book-format {
    padding: 50px 0;
  }
}
.book-format__container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.book-format__img {
  width: 50%;
  transform: translateY(50px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #ededed;
}
.book-format__img.golden-properties {
  background-image: url('../assets/images/golden-properties.jpg');
}
.book-format__img.different-qualities {
  background-image: url('../assets/images/different-qualities.jpg');
}
.book-format__img.masterpiece {
  background-image: url('../assets/images/masterpiece.jpg');
}
.book-format__img.tradition {
  background-image: url('../assets/images/tradition.jpg');
}
.book-format__content {
  width: 50%;
  background-color: white;
  padding: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.book-format__content h2 {
  margin: 0 0 30px;
  color: #A47B27;
}
.book-format__container.invert .book-format__img {
  order: 2;
  transform: translateY(-50px);
}
@media screen and (max-width: 768px) {
  .book-format__container {
    flex-wrap: wrap;
  }
  .book-format__img {
    order: 2;
    width: 100%;
    height: 400px;
    transform: translateY(0);
  }
  .book-format__content {
    order: 1;
    width: 100%;
    padding: 20px;
    box-shadow: none;
  }
  .book-format__container.invert {
    padding-top: 0;
  }
  .book-format__container.invert .book-format__img {
    transform: translateY(0);
  }
}
.single-element {
  width: 100%;
  padding: 100px 20px;
  background-image: url('../assets/images/clouds-gray.jpg');
  background-position: center -300px;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 1900px) {
  .single-element {
    background-position: center -600px;
  }
}
@media screen and (max-width: 640px) {
  .single-element {
    background-position: center top;
  }
}
.single-element__container {
  width: 100%;
  max-width: 1100px;
  margin: 100px auto 0;
  padding-left: 50px;
  padding-top: 250px;
  position: relative;
}
.single-element__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f9f9f9;
  z-index: 0;
}
.single-element__cover-image {
  display: none;
  width: 100%;
}
.single-element__wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  z-index: 1;
}
.single-element__label {
  width: 40%;
  max-width: 200px;
  padding: 20px;
  background-color: #C42E29;
  color: white;
  transform: translateY(50px);
}
.single-element__date {
  margin-bottom: 40px;
  text-align: right;
}
.single-element__date i {
  margin-right: 15px;
  width: 24px;
  height: 24px;
  transform: translateY(5px);
}
.single-element__share span {
  display: block;
  margin-bottom: 20px;
  text-align: right;
  font-size: 18px;
}
.single-element__share ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-element__share li {
  display: inline-block;
  margin-left: 20px;
}
.single-element__share li i {
  width: 24px;
  height: 24px;
}
.single-element__side-menu ul,
.single-element .multimedia-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-element__side-menu a,
.single-element .multimedia-menu a {
  text-align: right;
  display: block;
  color: white;
  border: solid 1px transparent;
  padding: 8px;
  transition: padding ease 0.2s;
}
.single-element__side-menu a.active,
.single-element .multimedia-menu a.active {
  padding-right: 16px;
  border-color: white;
}
@media (hover) {
  .single-element__side-menu a:hover,
  .single-element .multimedia-menu a:hover {
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .single-element__side-menu a,
  .single-element .multimedia-menu a {
    text-align: center;
  }
}
.single-element__side-menu .current-menu-item a,
.single-element .multimedia-menu .current-menu-item a,
.single-element__side-menu .current_page_item a,
.single-element .multimedia-menu .current_page_item a {
  padding-right: 16px;
  border-color: white;
}
.single-element .chef-recipe-inside {
  display: block;
  margin-bottom: 16px;
  font-size: 20px;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.single-element .chef-recipe-inside span:nth-child(1) {
  color: #A47B27;
}
.single-element__title {
  margin: 0 0 16px;
  text-transform: uppercase;
  color: #A47B27;
}
.single-element__type {
  display: block;
  margin-bottom: 16px;
  color: #C42E29;
  font-size: 20px;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.single-element__intro {
  margin-bottom: 32px;
}
.single-element__details {
  margin-bottom: 24px;
  padding: 16px 0 8px;
  border-top: dashed 1px #A47B27;
  border-bottom: dashed 1px #A47B27;
}
.single-element__details span {
  display: inline-block;
  margin-right: 50px;
  margin-bottom: 8px;
  font-size: 16px;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .single-element__details span {
    display: block;
    margin-right: 0;
  }
}
.single-element__details span strong {
  text-transform: uppercase;
}
.single-element__content {
  flex: 1;
  background-color: white;
  padding: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.single-element__content ul {
  padding-left: 18px;
  line-height: 24px;
  font-size: 16px;
}
.single-element__content pre {
  white-space: pre-wrap;
}
@media screen and (max-width: 768px) {
  .single-element {
    padding-right: 0;
    padding-left: 0;
  }
  .single-element__container {
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
  }
  .single-element__cover {
    display: none;
    position: relative;
    top: initial;
    left: initial;
    width: 100%;
    height: 300px;
    z-index: 0;
  }
  .single-element__cover-image {
    display: block;
  }
  .single-element__wrapper {
    flex-wrap: wrap;
  }
  .single-element__label {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    background-color: #C42E29;
    color: white;
    transform: translateY(0);
  }
  .single-element__content {
    order: 1;
    width: 100%;
    flex: initial;
    padding: 20px;
  }
  .single-element__content h2 {
    font-size: 20px;
  }
}
.page-section-title {
  border-bottom: dashed 1px #A47B27;
  padding-bottom: 12px;
}
.page-file-download {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-file-download a:nth-child(2) {
  order: 1;
  padding: 0;
  display: block;
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background-color: #C42E29;
  background-image: url('../assets/images/icons/download-white.png');
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}
.page-file-download a:nth-child(1) {
  order: 2;
  margin-left: 8px;
}
.news {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.news__single {
  display: flex;
}
.news__single:not(.first):not(:last-child) {
  border-bottom: solid 1px #A47B27;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.news__thumb {
  width: 30%;
}
.news__content {
  flex: 1;
  padding-left: 30px;
}
.news__date {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #F8A800;
}
.news__title {
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .news {
    margin-top: 0;
    box-shadow: none;
  }
  .news__thumb {
    display: none;
  }
  .news__content {
    padding-left: 0;
  }
  .news__title {
    font-size: 16px;
    line-height: 26px;
  }
}
.side-menu {
  position: fixed;
  top: 40%;
  left: 0;
  z-index: 998;
}
@media (max-width: 1440px) {
  .side-menu {
    display: none;
  }
}
.side-menu ul {
  list-style: none;
  padding: 0;
}
.side-menu a {
  position: relative;
  margin-bottom: 10px;
  padding: 0 5px;
  display: inline-block;
  font-weight: 700;
  color: #C42E29;
  transition: transform ease 0.3s;
}
.side-menu a:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateX(5px);
}
.side-menu a::before {
  content: "";
  right: 150%;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #C42E29;
  width: 10vw;
  opacity: 0;
  transition: all ease 0.3s;
}
.side-menu a.active::before {
  right: 105%;
  opacity: 1;
}
.press-list {
  width: 100%;
  word-break: break-word;
}
@media screen and (max-width: 640px) {
  .press-list {
    padding-top: 30px;
  }
}
.press-list .press-item {
  display: block;
  color: inherit;
  margin-bottom: 15px;
  padding-bottom: 15px;
  transition: background-color ease 0.3s;
  padding: 10px 0;
}
.press-list .press-item:not(:last-of-type) {
  border-bottom: solid 1px #F8A800;
}
.press-list .press-item__date {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  color: #F8A800;
}
.press-list .press-item__title {
  margin: 0 0 10px;
  font-weight: 400;
}
.press-list .press-item__subtitle {
  margin: 0 0 10px;
  font-weight: 400;
}
.press-list .press-item__download {
  margin-bottom: 16px;
  display: inline-block;
  font-size: 14px;
}
.press-list .press-item i {
  width: 16px;
  height: 16px;
  transform: translateY(4px);
}
.press-list .press-kit {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.press-list .press-kit:not(:last-of-type) {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: solid 1px #F8A800;
}
.press-list .press-kit__left {
  margin-right: 32px;
}
@media screen and (max-width: 640px) {
  .press-list .press-kit__left {
    margin-right: 20px;
  }
}
.press-list .press-kit__left img {
  display: block;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 640px) {
  .press-list .press-kit__left img {
    width: 40px;
    height: 40px;
  }
}
.press-list .press-kit__title {
  margin-top: 0;
}
.press-list .press-kit__content {
  display: block;
  margin-bottom: 20px;
}
.press-list .press-kit__download {
  display: inline-block;
  border: solid 1px #C42E29;
  padding: 8px 16px;
  color: #C42E29;
  cursor: pointer;
  transition: all ease 0.3s;
}
.press-list .press-kit__download:hover {
  background-color: #C42E29;
  color: white;
}
.press-list .press-review__title {
  font-weight: 700;
  text-transform: uppercase;
  color: #C42E29;
}
.press-list .press-review__list {
  padding: 0;
  list-style: none;
}
.press-list .press-review__list li {
  display: block;
  margin-bottom: 8px;
}
.press-list .press-review__link {
  display: inline-block;
  text-decoration: underline;
}
.page-container {
  padding-top: 200px;
  background-image: url('../assets/images/clouds-gray.jpg');
  background-position: center -400px;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 2000px) {
  .page-container {
    background-position: center -700px;
    background-image: none;
  }
}
@media screen and (max-width: 1024px) {
  .page-container {
    padding-top: 100px;
    padding-bottom: 20px;
    background-position: center top;
    background-size: 100%;
  }
}
.pagination {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 20px;
  padding-top: 80px;
  text-align: center;
}
.pagination .page-numbers.current {
  color: white;
  background-color: #C42E29;
}
.pagination a,
.pagination span {
  padding: 8px 12px;
  border-radius: 5px;
}
.pagination a:hover,
.pagination span:hover {
  background-color: #ededed;
}
.companies {
  margin-bottom: 16px;
}
.companies h3 {
  margin-top: 24px;
  margin-bottom: 6px;
  font-size: 18px;
  color: #C42E29;
}
.companies a,
.companies span {
  display: block;
  line-height: 24px;
}
.page-menu {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-menu__single {
  display: flex;
  margin-bottom: 32px;
  padding: 24px;
  background-color: white;
  color: inherit;
  transition: all ease 0.3s;
  border: solid 1px #ededed;
}
.page-menu__single:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: currentColor;
}
.page-menu__thumb {
  position: relative;
  width: 40%;
  overflow: hidden;
}
.page-menu__content {
  flex: 1;
  padding-left: 30px;
}
.page-menu__date {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #F8A800;
}
.page-menu__title {
  margin: 8px 0;
  color: #000000;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
}
.page-menu__excerpt {
  color: #000000;
  margin: 0 0 16px;
}
.page-menu__link {
  color: #C42E29;
}
.page-menu__single:hover .page-menu__title {
  color: #C42E29;
}
@media screen and (max-width: 768px) {
  .page-menu {
    margin-top: 0;
    box-shadow: none;
  }
  .page-menu__title {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (max-width: 640px) {
  .page-menu__single {
    flex-wrap: wrap;
  }
  .page-menu__thumb {
    width: 100%;
  }
  .page-menu__content {
    margin-top: 16px;
    padding-left: 0;
  }
  .page-menu__title {
    font-size: 24px;
  }
}
.recipe-campaign {
  padding: 0 16px;
  background-color: #f8f8f8;
  background-image: url('../assets/images/recipe-campaign-pattern.png');
}
.recipe-campaign__inside {
  width: 100%;
  max-width: 1440px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .recipe-campaign__inside {
    padding: 30px 0 50px;
  }
}
.recipe-campaign__img {
  width: 400px;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .recipe-campaign__img {
    width: 100%;
  }
}
.recipe-campaign__img img {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.recipe-campaign__content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .recipe-campaign__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
}
.recipe-campaign__content__title {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 32px;
  color: #C42E29;
}
.recipe-campaign__content__paragraph {
  margin: 0 0 24px;
}
.recipe-campaign__content__cta {
  display: inline-block;
  padding: 12px 16px;
  background-color: #C42E29;
  color: white;
  text-transform: uppercase;
  transition: background-color ease 0.3s;
}
.recipe-campaign__content__cta:hover {
  background-color: #DE2F2C;
  color: white;
}
.recipe-campaign__content__cta:active {
  background-color: #961714;
  transition: background-color ease 0s;
}
@media screen and (max-width: 640px) {
  .recipe-campaign__content__cta {
    width: 100%;
    text-align: center;
  }
}
.social-wall {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto;
  padding: 20px;
}
.social-wall__title {
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  color: #A47B27;
}
.social-wall__subtitle {
  display: block;
  margin-bottom: 60px;
  text-align: center;
  font-size: 16px;
}

@media screen and (min-width: 1025px) and (max-width: 1364px) {
  .menu ul li a {
     font-size: 12px !important;
  }
}
/*# sourceMappingURL=style.css.map*/