/* CSS Variables */
:root{
	--red:#E31A24;
	--green:#1F7935;
	--orange:#DDA446;
	--dark-green:#0A4217;
}
.nude-bg{
	background-color: #FFEDE8;
}
.salmon-bg{
	background-color: #D88F80;
}
.yellow-bg{
	background-color:#FFF4F1;
}
@keyframes swing {
	0%, 100% {
		transform: rotate(.05turn);
	}
	50% {
		transform: rotate(-.05turn);
	}
}
@keyframes swing2 {
	0%, 100% {
		transform: rotate(-3.674deg);
	}
	50% {
		transform: rotate(-6.674deg);
	}
}
.swing{
	transform-origin: bottom center;
	animation: swing 8s ease-in-out 0s infinite;
}
.swing2{
	transform-origin: bottom center;
	animation: swing2 5s ease-in-out 0s infinite;
}
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* General styling */
*, :before, :after {
  -webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent; /* no more color over a link when tapped, usually iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* antialiasing, Mozilla only */
  -webkit-font-smooth: always; /* text has no sharp edges, Safari only */
}
html, body {
    overflow-x: hidden;
}
html {
	-ms-overflow-style: scrollbar; /* scrollbar in case of overflow for IE */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-justify-content: space-between;
	justify-content: space-between;
  font: 18px/166.667% 'Neue Haas Grotesk Display Pro', arial, sans-serif;
  font-weight:400;
  color: #0A4217;
  background: #FFF;
}
h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a  {
	margin-bottom: 20px;
  text-rendering: optimizeLegibility;
	font-weight: 900;
	line-height: 125%;
	color:var(--red);
	transition: .4s;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration:none;
}
article ul li,
article ol li,
article p {
	word-break: break-word;
}
article table tr:first-child{
	background:#d5d5d5!important;
}
article table tr:nth-child(odd){
	background:#f9f7f6;
}
article table tr:nth-child(even){
	background:#fff;
}
span {
    display: inline;
}
a {
	color: inherit;
  cursor: pointer;
	transition:.4s;
}
a:not([class]):focus {
  outline: none;
	box-shadow: none;
}
img, iframe {
	max-width: 100%;
	height: auto;
}
img.size-portrait-thumbnail {
	width:auto;
	max-width:unset;
}
i:not([class]), em, cite, dfn {
	font-style: italic;
}
ul, ol {
    margin: 0 0 25px 20px;
}
ol {
	list-style: decimal;
	list-style-position:inside;
}
ul {
	list-style: disc;
	list-style-position:inside;
}
nav ul, nav ol {
    margin: 0;
    list-style: none;
}
b, strong, th, legend {
	font-weight: bold;
}
small {
	font-size: 75%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
  vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
abbr[title] {
  text-decoration: underline dotted;
}
abbr[data-original-title], abbr[title] {
  cursor: help;
}
del {
  text-decoration: line-through;
}
table {
	margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}
th, td {
	border: 1px solid #eceeef;
	padding: 10px;
}
caption {
	font-size: 15px;
  padding: 10px 0;
  caption-side: bottom;
}
figcaption {
  font-size:15px;
}
legend {
	margin-bottom: 5px;
}
label {
	display: block;
	cursor: pointer;
}
button, input, textarea {
	font-family: inherit;
	line-height: normal;
	margin: 0;
}
textarea {
	min-height: 80px;
	resize: vertical;
}
[type="submit"], [type="reset"], [type="button"],
[type="text"], [type="email"], [type="tel"], [type="search"],
button {
	border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
	appearance: none;
}
button, [type="submit"], [type="reset"], [type="button"] {
  cursor: pointer;
}
textarea:focus, button:focus,
div[contenteditable="true"]:focus, [class~="btn"]:focus,
[type="text"]:focus, [type="tel"]:focus, [type="email"]:focus, [type="password"]:focus, [type="submit"]:focus {
  outline: 0;
}
[hidden] {
	display: none;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4,
ol + h2, ol + h3, ol + h4,
code + h2, code + h3, code + h4,
table + h2, table + h3, table + h4,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4 {
    margin-top: 35px;
}
/* WordPress Core */
.gallery{
	margin-left: -10px!important;
	margin-right: -10px!important;
}
.alignnone {
  margin: 5px 20px 5px 0;
}
.aligncenter,
div.aligncenter  {
  display: block;
  margin: 30px auto 40px auto;
}
div.aligncenter{
	margin: 0 auto;
}
div.aligncenter img{
	width: 100%;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 100%; /* Image does not overflow the content area */
  text-align: left;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
	margin-bottom: 0;
}
.wp-caption p.wp-caption-text,
.wp-block-image figcaption, .gallery-caption{
  font-size: 16px;
  line-height: 18px;
  margin: 0;
  padding: 0 4px 5px;
	text-align: center;
	margin:0px;
	margin-bottom: 20px;
	color: var(--green);
	font-weight: 500;
}
.full-width {
	width:100%;
	overflow:hidden;
}
.gallery-item{
	padding: 10px;
}
.gallery-item img{
	border: 0!important;
}
.content-body img{
	border-radius: 20px;
}
@media(max-width:767px){
	.gallery-item{
		width: 100%!important;
	}
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
  white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
#wpadminbar {
    /* display: none !important; */
}
html.js, html.no-js, html {
  margin-top: 0 !important;
}

/* End of WordPress Core */
/* General Theme Style */
.h-align{
  text-align:center;
}
.clear:after,
.clear:before,
.row:after,
.row:before{
	clear:both;
	display:block;
	width:100%;
	content:'';
}
.container{
	width:100%;
	max-width:80%;
	padding:0px 15px;
	margin:0 auto;
	display:block;
	position:relative;
}
.container:before,
.container:after{
	content:"";
	display:block;
	clear:both;
}
.img-abs{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top:0;
	left: 0;
}
.border-radius-30{
	border-radius: 30px;
}
section{
	padding: 50px 0;
}
.margin-bottom-50{
	margin-bottom: 50px;
}
.margin-top-50{
	margin-top: 50px;
}
.text-right{
	text-align: right;
}
/* Row */
.row{
	display: block;
	width: 100%;
}
.row > .item{
	display: inline-block;
	padding: 15px;
	vertical-align: top;
}
.row > .item.item19{
	width: 19%;
}
.row > .item.item24{
	width: 24%;
}
.row > .item.item32{
	width: 32%;
}
.row > .item.item49{
	width: 49%;
}
.row > .item.item50{
	width: 50%;
	float: left;
}
.row > .item.item65{
	width: 65%;
	float: left;
}
.row > .item.item35{
	width: 35%;
	float: left;
}
.row > .item.full-item{
	width: 100%;
}
/* Flex */
.flex-row, .flex-row.reverse, .flex-column, .flex-column.reverse{
	display: flex;
}
.flex-row{
	flex-direction: row;
}
.flex-column{
	flex-direction: column;
}
.flex-row.reverse{
	flex-direction: row-reverse;
}
.flex-column.reverse{
	flex-direction: column-reverse;
}
.flex-item{
	padding: 0 10px;
	position: relative;
}
.flex-item.item10{
	flex: 1 1 10%;
}
.flex-item.item20{
	flex: 1 1 20%;
}
.flex-item.item30{
	flex: 1 1 30%;
}
.flex-item.item33{
	flex: 1 1 33%;
}
.flex-item.item40{
	flex: 1 1 40%;
}
.flex-item.item50{
	flex: 1 1 50%;
}
.flex-item.item60{
	flex: 1 1 60%;
}
.flex-item.item70{
	flex: 1 1 70%;
}
.flex-item.item80{
	flex: 1 1 80%;
}
.flex-item.item90{
	flex: 1 1 90%;
}
/*form adds */
 span.wpcf7-list-item{
  margin: 0;
}
.wpcf7-not-valid-tip{
  font-size: 12px!important;
  color:#ff0000;
  line-height: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output{
  border: none;
  font-size: 14px;
  padding: 0;
  margin:5px 0;
  line-height: 18px;
}
 .wpcf7 form.invalid .wpcf7-response-output{
	color:#ff0000;
}
.wpcf7 form.sent .wpcf7-response-output {
	color:#41ee6e;
}
.wpcf7-form input[type=checkbox] {
  position: relative;
  visibility: hidden;
	width: auto;
	display: inline-block;
	padding: 0;
	line-height: 0;
}
.wpcf7-form input[type=checkbox]+span:before {
  display: block;
  position: absolute;
  content: '';
  height: 13px;
  width: 13px;
  top: 0px;
  border: 1px solid var(--green);
  left: 0;
	border-radius:4px;
}
.wpcf7-form input[type=checkbox]+span:after {
  display: block;
  position: absolute;
	height: 7px;
	width: 7px;
	top: 3px;
  left: 3px;
  visibility: hidden;
  background-color: var(--green);
  border-radius: 50%
}
.wpcf7-form input[type=checkbox]:checked+span:before {
  background: transparent
}
.wpcf7-form input[type=checkbox]:checked+span:after {
  visibility: visible
}
.form {
  display: inline-block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.form .item.item50 input,
.form .item.full-item input[type="text"],
.form textarea {
  width: 100%;
	border:0;
  border-bottom: 1px solid #B9B9B9;
  padding: 10px;
  font-size: 16px;
  line-height: 1;
  transition: 0.4s;
	background-color:transparent;
}
.form textarea {
	resize: none;
	height: 100px;
}
.form .item.item50 input:focus,
.form textarea:focus {
  border-bottom: 1px solid var(--red);
}
.form .item.item50 input::placeholder,
.form textarea::placeholder{
	transition: .4s;
}
.form .item.item50 input:focus::placeholder,
.form textarea:focus::placeholder{
	color:var(--red);
}
.form .item br {
  display: none;
}
.form .item.terms-item span {
  display: block;
  text-align: left;
}
.wpcf7-form-control-wrap{
	margin-bottom: 10px;
}
.form .item.terms-item span.wpcf7-form-control-wrap label {
  font-size: 14px;
  line-height: 16px;
}
.form .item.terms-item span.wpcf7-form-control-wrap label span {
  display: inline-block;
  width: 90%;
  padding-left: 5px;
}
.form .item a{
	text-decoration: underline;
	color:var(--green);
}
.form .item a:hover {
  color: var(--red);
}
.form .btn {
  margin-top: 30px;
	min-width: 165px;
	justify-content: end;
	position: relative;
	cursor: pointer;
	margin-top: 0;
}
.form .item.full-item{
	text-align: left;
}
.form .btn.trigger_upload{
	justify-content: center;
	padding: 10px;
}
.form .hidden-upload{
	display: none;
}
.wpcf7-spinner{
	position: absolute;
  margin-left: 100px;
}
.form input[type="submit"]{
	background-color: transparent;
	box-shadow: none;
	color:var(--green);
	transition: .4s;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: left;
	border: 0;
	padding: 0 20px;
	font-weight: 500;
}
.form input[type="submit"]:hover{
	color:#fff;
}
.wpcf7-form .wpcf7-spinner{
	position: absolute!important;
	margin-left: 85px!important;
}
/* Btns */
.btn{
	transition: .4s;
	text-decoration: none;
	color:var(--green);
	text-transform: uppercase;
	font-size: 16px;
	line-height: 20px;
	padding: 14px 18px;
	border-radius: 56px;
	border: 1px solid var(--green);
	font-weight: 700;
	display: inline-flex;
  align-items: center;
}
.btn svg{
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	transition: .4s;
	color:var(--green);
}
.btn:hover{
	background-color: var(--green);
	color:#fff;
}
.btn:hover svg{
	color:#fff;
}
.category_btn{
	display: inline-block;
	margin-bottom: 20px;
	color:var(--dark-green);
	font-size: 16px;
	cursor: none;
	border-radius: 5px;
	background: #FFE7C2;
	padding: 5px 7px;
	font-size: 16px;
	line-height: 18px;
	font-weight: 500;
}
.filter__btn{
	display: inline-block;
	text-align: center;
	text-decoration: none;
	color:var(--dark-green);
	font-size: 18px;
	font-weight: 500;
	vertical-align: top;
	padding: 15px;
	transition: .4s;
}
.filter__btn:focus, .filter__btn:active{
	border: 0;
	box-shadow: none;
}
.filter__btn img{
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto;
	display: block;
	margin-bottom: 10px;
}
.filter__btn:hover, .filter__btn.filter__active{
	color:var(--green);
}
.filter__btn:hover img, .filter__btn.filter__active img{
	border:4px solid var(--green);
}
/* Fonts*/
.hp-main-title{
	font-size: 120px;
	font-weight: 900;
	line-height: 103.333%;
	text-transform: uppercase;
}
.page-title,  .hp-main-title{
	color:#fff;
}
.page-title, .section-title{
	font-size: 60px;
	font-weight: 900;
	text-transform: uppercase;
}
.section-title{
	color:var(--red);
}
.post-preview-title, .product-title{
	color:var(--dark-green);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
}
.post-preview-recipe-title{
	color:var(--red);
	font-size: 24px;
	font-weight: 900;
	text-transform: uppercase;
}
.recipe-title, .post-preview-job-title{
	color:var(--red);
	font-size: 35px;
	font-weight: 900;
	text-transform: uppercase;
}
.post-preview-job-title{
	margin-bottom: 10px;
}
time{
	color:var(--orange);
	font-weight: 500;
	display: block;
	margin-bottom: 15px;
}
.wysiwyg ul, .wysiwyg ol{
	margin: 20px;
	margin-top: 0;
	margin-right: 0;
}
.wysiwyg p{
	margin-bottom: 20px;
}
article .wysiwyg p, article .wysiwyg li{
	line-height: 166.667%;
	color:var(--dark-green);
}
.wysiwyg blockquote{
	border-radius: 20px;
	background: #FFF8ED;
	padding: 10px;
	color:var(--orange);
	font-style: italic;
	font-weight: 500;
	font-size: 20px;
	line-height: 35px;
	margin: 20px 0;
}
h1{
	font-size: 40px;
}
h2{
	font-size: 30px;
}
h3{
	font-size: 28px;
}
h4{
	font-size: 26px;
}
h5{
	font-size: 24px;
}
h6{
	font-size: 22px;
}
.wysiwyg  ol {
  list-style: none;
  counter-reset: custom-counter;
	margin-left: 0;
	text-align: left;
}
.wysiwyg  ol li {
  counter-increment: custom-counter;
  position: relative;
	margin-bottom: 10px;
	padding-left: 40px;
}
.wysiwyg  ol li::before {
  content: counter(custom-counter);
  /* Additional styling for the marker */
  color: #3498db; /* Change color as needed */
  font-weight: bold; /* Change font weight as needed */
  margin-right: 5px; /* Adjust spacing as needed */
	background-color: var(--red);
	color:#fff;
	font-size: 15px;
	font-weight: 900;
	width: 25px;
	height: 25px;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	top:0;
	left: 0;
	padding-top: 1px;
}
.wysiwyg ul{
	list-style-position: outside;
}
.wysiwyg ul ::marker{
	font-size: 20px;
	color:var(--green);
}
.wysiwyg a{
	text-decoration: underline;
	color:var(--green);
}
.wysiwyg a:hover{
	color:var(--red);
}
.wysiwyg strong, .wysiwyg b{
	font-weight: 500;
}
.subtitle{
	font-size: 20px;
	font-weight: 500;
	color:var(--dark-green);
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.reteta-body p, .content-body.wysiwyg p, .reteta-body li, .content-body.wysiwyg li{
	font-size: 20px;
}
/**/
.title-info-description .wysiwyg{
	max-width: 850px;
	margin:  0 auto;
	margin-bottom: 30px;
	color:var(--dark-green);
}
/**/
.header-banner{
	position: relative;
	width: 100%;
	height: 402px;
}
.header-banner:after{
	display: block;
	content:'';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(41, 0, 0, 0.50);
}
.header-banner .container{
	position: relative;
	height: 100%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 800px;
}
.header-banner h1{
	margin-bottom: 0;
}
/***/
.values .flex-item p{
	color:var(--red);
	font-size: 20px;
	line-height: 125%;
}
/* Pagination */
.ws-navigation{
	display: block;
	width: 100%;
	text-align: center;
}
.ws-navigation ul{
	margin: 0;
	list-style: none;
	margin-top: 50px;
}
.ws-navigation ul li{
	display: inline-block;
	padding: 5px 8px;
}
.ws-navigation ul li a{
	display: inline-block;
	text-decoration: none;
	line-height: 1;
	position: relative;
}
.ws-navigation ul li a:before{
	display: block;
	content:'';
	position: absolute;
	width: 22px;
	height: 22px;
	top:45%;
	left: 50%;
	transform:translate(-50%, -50%);
	background-color: var(--green);
	opacity: 0;
	z-index: -1;
	border-radius: 4px;
	transition: .4s;
}
.ws-navigation ul li a:hover svg{
	color:#fff;
}
.ws-navigation ul li.next svg, .ws-navigation ul li.last svg{
	transform:rotate(-180deg)
}
.ws-navigation ul li.active a:before,
.ws-navigation ul li a:hover:before{
	opacity: 1;
}
.ws-navigation ul li.active a,
.ws-navigation ul li a:hover{
	color: #fff;
}
/**/
.social_media{
	margin: 0;
	margin-top: 20px;
}
.social_media li {
  display: inline-block;
  vertical-align: top;
  padding: 0 3px;
}
.social_media li a {
  display: block;
  vertical-align: middle;
}
.social_media .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 1px solid var(--green);
  background-color: transparent;
  transition: 0.4s;
}
.social_media .icon svg {
  color: var(--green);
  transition: 0.4s;
}
.social_media a:hover .icon {
  background-color: var(--green);
}
.social_media a:hover .icon svg {
  color: #fff;
}
/* article general settings */
.article-page{
	padding-top: 100px;
}
.featured, .featured-post .post-preview-portrait figure{
	position: relative;
	width: 100%;
	height: 520px;
	margin:30px 0;
}
.featured img{
  transition: .4s;
}
.content-header .page-title{
	text-align: center;
	text-transform: unset;
	color:var(--red);
}
.content-header .category_btn{
	margin-bottom: 10px;
}
.content-header time{
	margin-bottom: 0;
}
.content-footer {
  margin: 50px 0;
}
.share-article, .article-tags{
	align-items: center;
	margin-bottom: 45px;
	color: var(--dark-green);
}
.share-article a svg{
	border:1px solid var(--dark-green);
	color:var(--dark-green);
	border-radius: 50%;
	width: 31px;
  height: 30px;
	transition: .4s;
}
.share-article a:hover svg{
	background-color: var(--green);
	color:#fff;
}
.share-article .whatsapp{
	display: none;
}
.article-tags{
	margin-bottom: 15px;
	align-items: baseline;
}
.share-article p, .article-tags p {
	margin-bottom: 0;
}
.share-article p strong, .article-tags p strong{
	font-weight: 500;
	display: block;
	min-width: 40px;
}
.share-article ul, .article-tags ul{
	margin: 0;
	margin-left: 5px;
	padding: 0;
	min-width: 50px;
	display: block;
}
.share-article ul li, .article-tags ul li{
	list-style: none;
	display: inline-block;
	padding: 5px;
	margin-bottom: 0;
}
.share-article li:before, .article-tags li:before{
	display: none;
}
.share-article ul li a{
	vertical-align: middle;
	line-height: 0;
}
.article-tags li a{
	padding: 8px 12px;
	line-height: 1;
	padding-bottom: 7px;
	display: block;
	border:1px solid var(--orange);
	text-decoration: none;
	line-height: 20px;
	background-color: var(--orange);
	color:#fff;
	font-weight: 500;
	border-radius: 14.5px;
}
.article-tags li a:hover{
	background-color: #fff;
	color:var(--orange);
}
.article-navigation{
	padding-top: 20px;
	border-top:1px solid var(--orange);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}
.article-navigation a{
	border: 0;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	padding: 0;
  color:var(--dark-green);
}
.article-navigation a svg{
  color:var(--dark-green);
}
.article-navigation a span{
	vertical-align: middle;
	display: inline-block;
	margin-right: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.article-navigation a span svg{
	margin: 0;
}
.article-navigation .next span{
	margin-right: 0;
	margin-left: 10px;
}
.article-navigation a:hover{
	color:var(--red);
	background-color: #fff;
}
.article-navigation a:hover svg{
	color:var(--red);
}
.reteta-header{
	position: relative;
	padding: 20px;
}
.reteta-header .featured{
	height: auto;
	aspect-ratio:1.2/1;
	margin: 0;
	transform: rotate(-2.793deg);
}
.reteta-header > .flex-row{
	margin-left: -40px;
	margin-right: -40px;
	position: relative;
}
.reteta-header:before{
	display: block;
	content:'';
	position: absolute;
	height: 100%;
	width: 85%;
	top:0;
	right: 0px;
	border-radius: 28px;
	background: #FFEDEE;
}
.reteta-header > .flex-row .flex-item{
	padding: 0 40px;
	text-align: left;
}
.recipe_info_list{
	margin:0;
	margin-left: -10px;
}
.recipe_info_list li{
	display: inline-flex;
	align-items: center;
	background-color: #fff;
	border-radius: 9px;
	margin: 0 10px;
}
.recipe_info_list li img{
	height: 32px;
}
.recipe_info_list li span{
	margin-left: 5px;
	color:var(--green);
	font-size: 16px;
	line-height: 18px;
	font-weight: 500;
	padding: 5px;
}
.reteta-header .info {
	color:var(--dark-green);
}
.reteta-header .info h1, .reteta-header .info h2, .reteta-header .info h3, .reteta-header .info h4{
	margin: 0;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #F49DA2;
	font-size: 20px;
	line-height: 22px;
}
.reteta-header .share-article{
	margin-bottom: 0;
	justify-content: end;
}
.recipe-page .content-body{
	text-align: center;
}
.reteta-body{
	border-radius: 28px 28px 0px 0px;
	background: #FFEDEE;
	padding: 50px 0;
	margin-top: -15px;
	text-align: left;
}
.reteta-body .recipe-title{
	margin-bottom: 50px;
}
.reteta-body .step{
	position: relative;
	counter-increment: custom-counter;
  position: relative;
  margin-bottom: 50px;
  padding-left: 100px;
}
.reteta-body .step:before{
	content: counter(custom-counter);
	font-weight: bold;
	background-color: var(--red);
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	width: 50px;
	height: 50px;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	top: 0px;
	left: 0;
}
.reteta-body .step h1, .reteta-body .step h2, .reteta-body .step h3, .reteta-body .step h4, .reteta-body .step h5, .reteta-body .step h6{
	color:var(--green);
}
/** Post preview */
.post-preview-portrait .featured{
  aspect-ratio:1/1;
  height: auto;
  margin-top: 0;
  margin-bottom: 20px;
}
.post-preview-portrait a{
  text-decoration: none;
  text-align: left;
}
.post-preview-portrait a:hover .post-preview-title{
  color:var(--green);
}
.post-preview-portrait a:hover .featured img{
  border:8px solid var(--green);
}
.post-preview-portrait time,
.post-preview-portrait .category_btn{
	margin-bottom: 10px;
}
.post-preview-portrait .inner-content > p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-preview-announce a{
	text-decoration: none;
	vertical-align: middle;
	display: block;
	border-radius: 30px;
}
.post-preview-announce a:hover{
	-webkit-box-shadow: 7px 6px 18px -1px rgba(0,0,0,0.17);
	-moz-box-shadow: 7px 6px 18px -1px rgba(0,0,0,0.17);
	box-shadow: 7px 6px 18px -1px rgba(0,0,0,0.17);
}
.post-preview-announce a:hover .btn{
	background-color: var(--green);
	color:#fff;
}
.post-preview-announce a:hover .btn svg{
	color:#fff;
}
.post-preview-announce .inner{
	padding: 30px;
}
.post-preview-announce .inner .info{
	color:var(--dark-green);
	margin:15px 0 20px;
}
.post-preview-announce .inner .info span{
	color: #DDA446;
	font-weight:normal;
}
.post-preview-announce .inner .info strong{
	font-weight: 500;
}
.post-preview-announce .inner .tag-label{
	color:var(--green);
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	display: inline-block;
	background-color: #fff;
	padding: 6px 12px;
	min-width: 120px;
	margin: 5px;
	border-radius: 14px;
	text-align: center;
}
.post-preview-announce .inner .tag-label:first-of-type{
	margin-left: 0;
}
.post-preview-announce .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
	color:var(--dark-green);
	margin-bottom: 20px;
}
.post-preview-reteta .info{
	display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
	padding-right: 20px;
}
.post-preview-reteta .reteta-header{
	margin-left: 0;
	margin-right: 0;
}
.post-preview-reteta .reteta-header:before{
	right: -10px;
}
.post-preview-reteta a{
	text-decoration: none;
}
.post-preview-reteta a:hover .featured img{
	transform: rotate(-5deg);
}
.post-preview-reteta .reteta-header > .flex-row .flex-item{
	padding: 0 20px;
	text-align: left;
}
.post-preview-reteta .reteta-header > .flex-row .flex-item.item40{
	flex: 1 1 35%;
}
.post-preview-reteta .reteta-header > .flex-row .flex-item.item60{
	flex: 1 1 65%;
}
.post-preview-reteta .see-recipe{
	margin-top: 15px;
	text-align: right;
}
.post-preview-reteta a:hover .see-recipe .btn{
	background-color: var(--green);
	color:#fff;
}
.post-preview-reteta a:hover .see-recipe .btn svg{
	color:#fff;
}
/**/
.announces_listing .item{
	margin-bottom: 40px;
}
/**/
.slider-controls .slider-nav{
	display: inline-block;
}
.slider-controls ul{
	list-style: none;
	margin: 0;
}
ul.slick-dots li{
	display: inline-block;
	padding: 0 5px;
}
ul.slick-dots li button{
	display: inline-block;
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: transparent;
	border:1px solid #fff;
  text-indent: -9999px;
	margin-bottom: 0;
	transition: .4s;
	position: relative;
 }
 ul.slick-dots li button:before,
 ul.slick-dots li button:after{
	 display: block;
	 width: 1px;
	 height: 6px;
	 background-color: #fff;
	 left: 50%;
	 transform:translateX(-50%);
	 transition: .4s;
	 opacity: 0;
	 content:'';
	 position: absolute;
}
ul.slick-dots li button:before{
	top:-10px;
}
ul.slick-dots li button:after{
 bottom: -10px;
}
ul.slick-dots li.slick-active button:before, ul.slick-dots li.slick-active button:after,
ul.slick-dots li button:hover:before, ul.slick-dots li button:hover:after{
	opacity: 1;
}

/**/
.hero-screen{
	padding: 0;
	position: relative;
}
.hero-screen .item{
	position: relative;
	min-height: calc(100vh - 75px);
	height: auto;
	padding: 160px 0;
	text-align: center;
}
.hero-screen .item:before{
	display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 0, 0, 0.50);
	z-index: 1;
}
.hero-screen .item .container .title-info-description{
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.hero-screen .item .container h1{
	font-size: 100px;
	line-height: 1;
}
.hero-screen .item .container .wysiwyg h1, .hero-screen .item .container .wysiwyg h2, .hero-screen .item .container .wysiwyg h3{
	font-size: 30px;
}
.hero-screen .item .container h1, .hero-screen .item .container .wysiwyg, .hero-screen .item .container .btn svg{
	color:#fff;
}
.hero-screen .item .container .btn{
	border:1px solid #fff;
	color:#fff;
}
.hero-screen .item .container .btn:hover{
	border: 1px solid var(--green);
}
.hero-screen .slider-controls{
	position: absolute;
	width: 100%;
	z-index: 2;
	text-align: center;
	bottom: 80px;
}
/* Fonts query */
@media(max-width:1700px){
	body{
		font-size: 16px;
	}
	.page-title, .section-title{
		font-size: 50px;
	}
	.subtitle{
		font-size: 18px;
	}
	.recipe-title, .post-preview-job-title{
		font-size: 30px;
	}
	.post-preview-announce .inner .tag-label, .recipe_info_list li span,
	.btn{
		font-size: 14px;
	}
	.wysiwyg ol li::before{
		padding-top: 0;
	}
	.post-preview-title, .product-title{
		font-size: 26px;
	}
	.reteta-body p, .content-body.wysiwyg p, .reteta-body li, .content-body.wysiwyg li{
		font-size: 18px;
	}
	.container{
		max-width: 85%;
	}
}
@media(max-width:1441px){
	.hero-screen .item .container h1{
		font-size: 75px;
	}
	.featured, .featured-post .post-preview-portrait figure{
		height: 445px;
	}
}
@media(max-width:1367px){
	.hero-screen .item .container h1 {
    font-size: 50px;
	}
	.page-title, .section-title {
    font-size: 40px;
	}
	.hero-screen .item{
		padding-bottom: 160px;
	}
	.post-preview-title, .product-title {
    font-size: 22px;
	}
	.category_btn, .btn{
		font-size: 14px;
	}
	.values .flex-item p{
		font-size: 18px;
	}
	.post-preview-recipe-title{
		font-size: 22px;
	}
	.post-preview-reteta .reteta-header > .flex-row .flex-item.item40{
		padding-right: 0;
	}
	.wysiwyg blockquote{
		font-size: 18px;
		line-height: 31px;
	}
}
@media(max-width:1281px){
	.container {
    max-width: 100%;
	}
}
@media(max-width:1025px){
	.recipe-title, .post-preview-job-title {
    font-size: 26px;
	}
	.header-banner{
		height: 360px;
	}
}

@media(max-width:850px){
	.hero-screen .item{
		min-height: calc(75vh - 75px)
	}
	.hero-screen .item .container h1 {
    font-size: 40px;
	}
	.category_btn, .btn{
		padding: 10px 14px;
	}
	body, .wysiwyg p, .wysiwyg li{
		font-size: 16px;
	}
	.page-title, .section-title {
		font-size: 30px;
	}
	.reteta-body .step{
		padding-left: 70px;
	}
	.reteta-body .step:before{
		width: 40px;
		height: 40px;
	}
	.recipes-grid .row > .item.item49{
		width: 100%;
	}
	.recipe-page{
		padding-top: 20px;
	}
	.recipe-page .reteta-header > .flex-row{
		flex-direction: column;
		margin: 0;
		justify-content: center;
		align-items: center;
	}
	.recipe-page .reteta-header > .flex-row .flex-item{
		padding: 10px;
		padding-bottom: 20px;
	}
	.recipe-page .reteta-header .featured{
		height: 400px;
	}
	.recipe-page .reteta-header:before{
		width: 100%;
		left: 0;
		right: unset;
	}
	.recipe-page .recipe-title, .recipe-page .recipe_info_list{
		text-align: center;
	}
}
@media(max-width:700px){
	.row > .item.item50{
		width: 100%;
	}
	.featured, .featured-post .post-preview-portrait figure{
		height: 340px;
	}
	ul.slick-dots li button{
		width: 10px;
		height: 10px;
	}
	.share-article .whatsapp{
		display: inline-block;
	}
	.ws-navigation ul li{
		padding: 5px 6px;
		margin: 2px;
	}
	.grid-articles .row > .item.item32{
		width: 100%;
	}
	h1{
		font-size: 30px;
	}
	h2{
		font-size: 27px;
	}
	h3{
		font-size: 25px;
	}
	h4, h5{
		font-size: 23px;
	}
	h6{
		font-size: 20px;
	}
	body, .wysiwyg p, .wysiwyg li {
    font-size: 15px;
	}
	.filter__btn{
		font-size: 17px;
	}
	.reteta-header > .flex-row{
		flex-direction: column;
		margin: 0;
		justify-content: center;
		align-items: center;
	}
	.reteta-header > .flex-row .flex-item{
		padding: 10px;
		padding-bottom: 20px;
	}
	.reteta-header .featured{
		height: 400px;
	}
	.reteta-header:before{
		width: 100%;
		left: 0;
		right: unset;
	}
	.recipe-title, .recipe-page .recipe_info_list{
		text-align: center;
	}
	.reteta-header .featured, .recipe-page .reteta-header .featured{
		height: auto;
		aspect-ratio:unset;
		width: 100%;
	}
	.reteta-header .featured img{
		position: static;
		width: 100%;
		height: auto;
	}
	.post-preview-reteta .reteta-header > .flex-row .flex-item.item40,
	.post-preview-reteta .reteta-header > .flex-row .flex-item.item60{
		padding: 0;
		padding-bottom: 20px;
		text-align: center;
		width: 100%;
	}
	.post-preview-reteta .see-recipe{
		text-align: center;
	}
	.recipe-page .reteta-header > .flex-row .flex-item{
		text-align: center;
	}
	.reteta-header .share-article{
		justify-content: center;
		margin-top: 20px;
	}
	.reteta-body .step {
    padding-left: 30px;
	}
	.reteta-body .step:before{
		width: 21px;
    height: 21px;
    font-size: 12px;
	}
	.reteta-body p, .content-body.wysiwyg p, .reteta-body li, .content-body.wysiwyg li{
		font-size: 16px;
	}
	.article-navigation a span.arrow{
		display: none;
	}
	.recipe-title, .post-preview-job-title{
		font-size: 20px;
	}
	.announces_listing .item{
		padding: 0;
	}
}
