/* Add your custom styles here... */ 
html, body, div, 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 */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
/*Fonts */
@font-face {
    font-family: "DukeCharming";
    src: url("../fonts/Duke Charming.otf") format("truetype");
    font-weight:700;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSans-Light.ttf") format("truetype");
    font-weight:300;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSans-Regular.ttf") format("truetype");
    font-weight:400;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSans-Medium.ttf") format("truetype");
    font-weight:500;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSans-SemiBold.ttf") format("truetype");
    font-weight:600;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSans-Bold.ttf") format("truetype");
    font-weight:700;
}
@font-face {
    font-family: "Futura";
    src: url("../fonts/FuturaPTMedium.otf") format("truetype");
    font-weight:500;
}
@font-face {
    font-family: "Quentin";
    src: url("../fonts/Quentin.otf") format("truetype");
    font-weight:400;
}

:root {
	--light-gray: #F0F0F0;
	--dark-gray: #181818;
	--turqoise: #01D3AD;
	--pink: #c62ac6;
	--font-FiraSans: 'FiraSans', sans-serif;
	--font-DukeCharming: 'DukeCharming', sans-serif;
	--font-Futura: 'Futura', sans-serif;
	--font-Quentin: 'Quentin', sans-serif;
	--h1-font-size: 64px;
	--h2-font-size: 50px;
	--h3-font-size: 40px;
	--h4-big-font-size: 35px;
	--h4-font-size: 34px;
	--h5-font-size: 20px;
	--h6-font-size: 18px;
	--paragraph-size: 14px;
	--body-size: 16px;
}

body {
	font-family: var(--font-FiraSans);
	background: var(--dark-gray);
	font-size: var(--body-size);
	line-height: 1.4;
	font-weight:300;
	-webkit-text-size-adjust: none;
	color: var(--light-gray);
}
ul, ol {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
em {	font-style: italic;}
strong{	font-weight:bold;	}
* {
    box-sizing: border-box !important;
    outline: none !important;
}
a {	text-decoration: none; }
p, .wpb_text_column ul, .wpb_text_column ol {
	margin-bottom: 20px;
	font-weight: 300;
}
p:last-child {
	margin-bottom: 0;
}
img {
	max-width: 100%;
	height: auto;
}
.alignright, .alignleft , .aligncenter{
	padding: 5px 10px;
}
input[type="text"],
input[type="email"],
input[type="submit"],
textarea,
.contact--fields select,
input[type="tel"] {
    -webkit-appearance: none;
    border-radius: 0;
}
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea,
button {
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	font-family: var(--font-FiraSans);
}
.bg-image {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*Transition Effect*/
a, .menu--stripes span, .shuffle, .tooltiptext, .each-recipe-category  .bg-image, .recipes-filters .title, .each-recipe-category .title, 
.recipes-filters .title::after {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.alignright{
	float:right;
}
.alignleft{
	float:left;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*animation*/
.animate {
	opacity: 0 !important;
}
.animate.start {
	opacity: 1 !important;
}
.fade-right{
	transform:translateX(50px);
}
.fade-left{
	transform:translateX(-50px);
}
.fade-bottom{
	transform:translateY(50px);
}
.fade-top{
	transform:translateY(-50px);
}
.fade-bottom.start,
.fade-top.start{
	transform:translateY(0);
}
.fade-left.start,
.fade-right.start{
	transform:translateX(0);
}
.animate{
	transition: 0.6s all ease-in-out;
	-webkit-transition: 0.6s all ease-in-out;
	-moz-transition: 0.6s all ease-in-out;
}

.delay1{
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.delay2{
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.delay3{
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.delay4{
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.delay5{
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.delay6{
	-webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.delay7{
	-webkit-transition-delay: 0.7s;
	-moz-transition-delay: 0.7s;
	transition-delay: 0.7s;
}
.delay8{
	-webkit-transition-delay: 0.8s;
	-moz-transition-delay: 0.8s;
	transition-delay: 0.8s;
}

.content-center {
	display: block;
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
}
.content-center-wide{
	max-width: 1620px;
}
.main-website-content {
	overflow: hidden;
}

/*404*/
.not-found {
	text-align: center;
	margin: 70px 0;
	padding: 0 50px;
}
.error404 #primary h2, .error404 #primary h3, .word-notfound h2{
	font-family: var(--font-FiraSans);
	font-size: 35px;
}
.not-found a {
	color: var(--pink);
	text-decoration: underline;
}
.not-found span {
	color: var(--pink);
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
}
.not-found h1 {
	font-size: 160px;
	margin-top: 20px;
}
h1, h2, h3, h4, h5, h6{
	margin-bottom: 20px;
	font-family: var(--font-DukeCharming);
	font-weight:700;
	line-height: 1.1;
}
.clearfix::after {
	content: '';
	display: table;
	clear: both;
}
body img{
	display: block;
}
h1{
	font-size: var(--h1-font-size);
}
h2{
	font-size: var(--h2-font-size);
}
h3{
	font-size: var(--h3-font-size);
}
h4{
	font-size: var(--h4-font-size);
}
h5{
	font-size: var(--h5-font-size);
}
h6{
	font-size: var(--h6-font-size);
}

/*Customizing*/
.masthead .logo_container {
	max-width: 178px;
}
.logo_container a {
	display: block;
}
.logo_container img {
	width: 100%;
}
.masthead {
	padding: 40px 0 48px;
}
.masthead .content-center {
	display: flex;
	align-items: center;
	flex-flow: row;
	/* justify-content: space-between; */
}
body.open_menu {	overflow: hidden;}
.menu--stripes span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--light-gray);
	margin-bottom: 6px;
	border-radius: 3px;
}
.menu--stripes span:last-child{margin-bottom:0;}
.menu--stripes {
	display: block !important;
	cursor: pointer;
	width: 30px;
}
.open_menu .menu--stripes span:nth-child(2){opacity:0; }
.open_menu .menu--stripes span:first-child {	transform: rotate(45deg) translate(8px,4px);	-webkit-transform: rotate(45deg) translate(8px,4px);	-moz-transform: rotate(45deg) translate(8px,4px);}
.open_menu .menu--stripes span:last-child {	transform: rotate(-45deg) translate(8px,-5px);	-webkit-transform: rotate(-45deg) translate(8px,-5px);	-moz-transform: rotate(-45deg) translate(8px,-5px);	}	
.main-menu-holder {	transition: all 0.3s ease-in-out;	-webkit-transition: all 0.3s ease-in-out;	-moz-transition: all 0.3s ease-in-out;	position: fixed;	left: -100%;	top: 0;	width: 100%;	height: 100%;	background: #fff;	z-index: 99;	margin: 0;	text-align: center;	}
.open_menu .main-menu-holder {	left: 0;}

.menu-icons {
	display: flex;
	align-items: center;
	flex-flow: row;
	column-gap: 12px;
	margin-left: 76px;
}
.search-container input[type="submit"] {
	background-color: transparent;
	border: 0;
	font-size: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	padding: 0;
	top: 0;
	right: 0;
	cursor: pointer;
	z-index: 1;
}
.search-container {
	position: relative;
	border-bottom: 1px solid #fff;
	margin-left: auto;
}
.search-container input[type="text"] {
	background-color: transparent;
	color: #fff;
	border: 0;
	height: 62px;
	padding: 13px 20px;
	width: 400px;
	font-size: 14px;
	letter-spacing: 0.28px;
}
.search-container ::placeholder{
	opacity: 1;
	text-transform: uppercase;
}
.search-button{
	position: absolute;
	width: 35px;
	height: 35px;
	top: 13px;
	right: 26px;
	cursor: pointer;
}
.search-button-icon{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/magnifying-glass.svg');
}
.menu--instagram {
	width: 26px;
	height: 26px;
	position: relative;
	background-image: url('../images/instagram.svg');
}
.menu--heart {
	width: 32px;
	height: 32px;
	position: relative;
	background-image: url('../images/heart.svg');
}
#site-footer {
	border-top: 2px solid #fff;
	margin-top: 96px;
}
.footer_menu_container {
	padding: 30px 0 30px;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: space-between;
}
.link-wrapper{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.social-icon {
	position: relative;
}
.social-footer .social-icon {
	display: flex;
	align-items: center;
	column-gap: 13px;
}
.social-footer .social-text {
	color: var(--light-gray);
	font-weight: 300;
}
.footer-menu p {
	margin-bottom: 0;
	font-weight: 300;
}
.footer-menu .menu li a {
	color: var(--light-gray);
	font-weight: 300;
}
.footer-menu, .footer-menu .menu{
	display: flex;
	align-items: center;
	column-gap: 40px;
}
.footer-follow-inner {
	padding: 174px 0 165px;
	position: relative;
	border-radius: 20px;
}
.bg-instagram.bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
.footer-follow-box {
	background-color: var(--dark-gray);
	border: 2px solid #fff;
	border-radius: 20px;
	position: relative;
	z-index: 1;
	max-width: 440px;
	margin: 0 auto;
	padding: 60px 48px 65px;
	text-align: center;
}
.footer-follow-box h2 {
	font-size: var(--h2-font-size);
	margin-bottom: 10px;
}
.footer-follow-box p {
	margin-bottom: 10px;
}
.social-icon.icon-instagram {
	display: flex;
	justify-content: center;
	flex-flow: row;
}
.social-icon span {
	font-weight: 300;
}
.social-icon-instagram-inner{
	position: relative;
	display: flex;
	align-items: center;
	flex-flow: row;
	column-gap: 14px;
}
.each-recipe-section {
	position: relative;
	height: 838px;
	border-radius: 15px;
	width: 500px !important;
	padding: 0 43px 65px;
}
.recipes-section-list .each-recipe-section {
	max-height: 100vh;
	min-height: 600px;
}
.bg-recipe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
}
.recipe-description {
	position: relative;
	z-index: 1;
	max-width: 320px;
}
.recipe-section-inner {
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	height: 100%;
}
.recipes-section-list .slick-slide {
	margin: 0 10px;
}
.recipes-section-list .slick-list {
	margin: 0 -10px;
}
.recipes-section {
	margin-bottom: 160px;
}
.recipe-description h3 {
	font-size: var(--h4-font-size);
	margin-bottom: 5px;
}
.button-container a {
	color: #fff;
	padding: 10px 12px;
	border-radius: 3px;
	border: 1px solid var(--light-gray);
	display: inline-block;
}
.button-container .text {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.7px;
	font-family: var(--font-Futura);
}
.recipes-section-inner .button-container a {
	padding-left: 40px;
	position: relative;
}
.button-container .shuffle {
	width: 23px;
	height: 23px;
	position: absolute;
	left: 11px;
	top: 10px;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-image: url('../images/shuffle.svg');
	-webkit-mask-image: url('../images/shuffle.svg');
	background-color: #fff;
}
.recipes-section-list {
	margin-bottom: 24px;
}
.recipes-section-inner .button-container {
	text-align: center;
}
.button-container-share{
	position: absolute;
	top: 21px;
	right: 27px;
	width: 32px;
	height: 32px;
	z-index: 3;
}
.share {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-image: url('../images/share.svg');
	-webkit-mask-image: url('../images/share.svg');
	background-color: #fff;
	cursor: pointer;
	z-index: 1;
}
.clock{
	position: relative;
	width: 16px;
	height: 16px;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-image: url('../images/clock.svg');
	-webkit-mask-image: url('../images/clock.svg');
	background-color: #fff;
}
.each-recipe-section::before {
	content: '';
	border-radius: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: 1;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(2,2,2,0.9401961468181023) 17%, rgba(12,12,12,0.8225490879945728) 32%, rgba(227,227,227,0) 72%, rgba(255,255,255,0) 100%); 
}
.recipes-section-inner .button-container a:hover {
	background-color: #fff;
	color: var(--dark-gray);
}
.recipes-section-inner .button-container a:hover .shuffle{
	background-color: var(--dark-gray);
}
.duration-container {
	display: flex;
	flex-flow: row;
	align-items: center;
	column-gap: 7px;
	margin-bottom: 10px;
}
.duration-container .duration {
	font-size: 16px;
	font-weight: 500;
}
.recipes-tags .tag::before {
	content: '#';
}
.recipes-tags {
	font-size: 16px;
	font-weight: 300;
}
.recipe-description .title{
	position: relative;
}
.recipes-section-filter {
	display: flex;
	gap: 20px;
	flex-flow: wrap;
}
.recipes-section-filter .each-recipe-section {
	height: 550px;
	width: calc(33.33% - 14px) !important;
	padding: 0 43px 20px;
}
.recipes-filter-wrapper {
	display: flex;
	flex-flow: row;
	column-gap: 40px;
	align-items: flex-start;
}
.recipes-filter-categories {
	margin-bottom: 55px;
}
.recipes-filter-categories {
	margin-bottom: 55px;
	display: flex;
	flex-flow: row;
	justify-content: center;
	column-gap: 20px;
}
.recipes-filter-duration {
	margin-bottom: 50px;
}
.each-recipe-category {
	font-size: 16px;
	text-align: center;
	cursor: pointer;
	font-weight: 400;
}
.each-recipe-category .cat-image {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	position: relative;
	margin-bottom: 10px;
	background-size: 115%;
	border: 3px solid var(--dark-gray);
	outline: solid #fff 2px !important;
	margin-left: auto;
    margin-right: auto;
}
.recipes-posts {
	width: calc(100% - 180px);
}
.recipes-filters {
	width: 180px;
}
.recipes-filters .title {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	margin-bottom: 5px;
	font-weight: 400;
}
.recipes-filters .title::before {
	content: '';
	width: 16px;
	height: 16px;
	border: 1px solid #fff;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 3px;
}
.button-more-container .text {
	font-family: var(--font-FiraSans);
	text-align: center;
	font-style: italic;
	font-weight: 500;
	position: relative;
	z-index: 1;
	background-color: var(--dark-gray);
	padding: 0 10px;
	cursor: pointer;
}
.button-more-container {
	text-align: center;
	margin-top: 62px;
	margin-bottom: 114px;
	position: relative;
}
.button-more-container::before {
	content: '';
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 11px;
	left: 0;
}
.recipes-section-filter .each-recipe-section .link-wrapper {
	z-index: 2;
	border-radius: 15px;
}
.content-center-narrow{
	max-width: 1200px;
}
.image-content-section .content-center-narrow {
	/*margin-right: 0;*/
}
.image-content-inner {
	margin-bottom: 114px;
	display: flex;
	column-gap: 50px;
	flex-flow: row;
}
.image-content-col.image-content-wrapper {
	width: 45%;
	margin-top: auto;
	margin-bottom: auto;
}
.image-content-col.bg-image-holder {
	width: 55%;
	position: relative;
	border-radius: 10px;
	height: 410px;
}
.image-content-col.image-content-wrapper .title h3 {
	font-size: var(--h2-font-size);
	margin-bottom: 10px;
}
.image-content-col.bg-image-holder .bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
}
.services-section-wrapper {
	display: flex;
	column-gap: 42px;
	text-align: center;
	flex-flow: row;
}
.services-section-wrapper .service-icon {
	text-align: center;
	margin-bottom: 10px;
}
.services-section-wrapper .service-icon img{
	margin: 0 auto;
}
.each-service .title {
	margin-bottom: 10px;
}
.services-section-wrapper .each-service {
	width: calc(25% - 20px);
}
.services-section {
	margin-bottom: 78px;
	border-top: 2px solid #fff;
	padding-top: 58px;
}
section.elementor-section > .elementor-container > .elementor-column > .elementor-widget-wrap.elementor-element-populated, .elementor-page .elementor-element,
.e-con-inner{
	padding: 0 !important;
}
.button-container-share .tooltiptext {
	visibility: hidden;
	width: auto;
	background-color: #fff;
	color: var(--dark-gray);
	text-align: center;
	border-radius: 6px;
	padding: 2px 8px;
	position: absolute;
	z-index: 1;
	top: -19px;
	left: 50%;
	opacity: 0;
	transform: translateX(-50%);
	z-index: 2;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2px;
}
.button-container-share .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
}
.button-container-share .mylink {
	display: none;
}
.button-container-share .tooltiptext.show {
	visibility: visible;
	opacity: 1;
}
.each-recipe-section .link-wrapper {
	z-index: 1;
}
.single-recipe-header {
	padding: 80px 0 80px;
	display: flex;
	align-content: center;
	column-gap: 78px;
	max-width: 940px;
	margin: 0 auto;
	flex-flow: row;
}
.recipe-steps-wrapper {
	display: flex;
	flex-flow: row;
	column-gap: 20px;
	margin-bottom: 70px;
}
.recipe-steps-wrapper .each-step {
	border: 2px solid #F0F0F0;
	padding: 50px 45px 30px;
	border-radius: 20px;
	width: 33.33%;
	display: flex;
	flex-flow: column;
	min-height: 475px;
}
.more-recipe {
	text-decoration: underline;
	margin-top: auto;
	margin-left: auto;
	font-weight: 400;
	cursor: pointer;
}
.active-filter.each-recipe-category .bg-image {
	outline-color: var(--pink) !important;
}
.active-filter.each-recipe-category .title{
	color: var(--pink);
}
.recipes-filters .title::after {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--pink);
	position: absolute;
	left: 3px;
	top: 6px;
	opacity: 0;
	visibility: hidden;
}
.recipes-filters .title.active-filter::after {
	opacity: 1;
	visibility: visible;
}
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.loader {
	border: 10px solid #d0d0d0;
	border-radius: 50%;
	border-top: 10px solid var(--pink);
	width: 50px;
	height: 50px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
.login--loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.07);
	z-index: 3;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
}
.login--loader .loader {
	position: absolute;
	top: 100px;
	left: 50%;
	margin-left: -25px;
}
.login--loader.loading {
	display: block !important;
}
.load--more--articles.disabled {
	pointer-events: none;
	opacity: 0.2;
}
.people-container .icon {
	width: 32px;
	height: 32px;
	position: relative;
}
.people-container .icon::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-image: url('../images/user-circle.svg');
	-webkit-mask-image: url('../images/user-circle.svg');
	background-color: #fff;
}
.single-recipe-info-bottom {
	font-weight: 500;
	font-size: 20px;
}
.single-recipe-image {
	width: 400px;
}
.single-recipe-info {
	width: calc(100% - 480px);
	padding-top: 50px;
}
.people-container, .cat-container {
	display: flex;
	align-items: center;
	column-gap: 5px;
	margin-bottom: 8px;
}
.single-recipe-info-top {
	margin-bottom: 20px;
	border-bottom: 2px solid #fff;
}
.each-step .title {
	font-size: var(--h3-font-size);
	line-height: 1.1;
}
.recipe-steps-wrapper .each-step table td {
	padding: 2px 15px 2px 0;
	font-weight: 500;
	font-size: 20px;
}
.recipe-footer-text {
	font-family: var(--font-Quentin);
	text-align: center;
	font-size: 43px;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	font-weight: 400;
	padding: 13px 0;
}
.recipe-text-inner .title {
	font-size: var(--h3-font-size);
	margin-bottom: 15px;
}
.recipe-text-inner .description p {
	font-size: 20px;
	font-weight: 400;
}
.recipe-text .content-center-narrow {
	max-width: 710px;
	margin-bottom: 68px;
}
.recipe-text-wrapper {
	display: flex;
	flex-flow: column;
	row-gap: 83px;
	margin-bottom: 60px;
}
.recipe-sparkes {
	width: 58px;
	height: 65px;
	position: relative;
}
.recipe-sparkes::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-image: url('../images/sparkles.svg');
	-webkit-mask-image: url('../images/sparkles.svg');
	background-color: #fff;
}
.recipe-text-wrapper .each-text {
	display: flex;
	flex-flow: row;
	column-gap: 17px;
	align-content: flex-start;
}
.recipe-text-inner {
	width: calc(100% - 60px);
}
a.more-recipe-link {
	color: #fff;
}
.error404 .footer-follow {
	display: none;
}
.single-recipe-info-top h1 {
	font-size: var(--h2-font-size);
}
.single-recipe-info-top  .clock {
	width: 20px;
	height: 20px;
}
.single-recipe-info-top  .duration-container .duration {
	font-size: 20px;
}
.word-notfound h2 span{
	text-decoration: underline;
}
.search-results-content {
	margin: 50px 0 100px;
}
.word-notfound h2 {
	font-size: 20px;
}
.search-results-content h1 span {
	text-decoration: underline;
}
.search--content {
	margin-top: 50px;
}
.recipes-posts .no-recipes {
	font-size: 20px;
	font-weight: 500;
}
.recipes-filters-holder {
	width: 180px;
}
.login--loader .loader {	
	top: 300px;	
}
.services-section-wrapper h4 {
	font-size: 26px;
}
.recipe-text-inner ul, .recipe-text-inner ol {
	padding-left: 20px;
	margin: 20px 0;
}
.recipe-text-inner ul{
	list-style-type: disc;
}
.recipe-text-inner ol {
	list-style-type: decimal;
}
.recipe-text-inner {
	font-size: 20px;
	font-weight: 400;
}
.recipe-steps-wrapper {
	justify-content: center;
}
.recipe-steps-wrapper .each-step table td:first-child {
	min-width: 120px;
}
.recipe-steps-wrapper .each-step .description span, .recipe-steps-wrapper .each-step .description em {
	display: inline-block;
	position: absolute;
	left: 0;
	text-align: right;
	width: 120px;
	/* padding-right: 15px; */
	font-weight: 700;
	font-style: normal;
}
.recipe-steps-wrapper .each-step .description p {
	position: relative;
	padding-left: 135px;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
	font-size: 19px;
}
.recipe-steps-wrapper .each-step .step-inner {
	margin-bottom: 20px;
}
.recipe-section-inner .recipe-description .title {
	word-break: break-word;
}
.recipes-posts {
	width: 100%;
}
.recipe-steps-wrapper .each-step .description span, .recipe-steps-wrapper .each-step .description em {
	color: var(--pink) !important;
}
.recipe-steps-wrapper .each-step .description span strong {
	color: #f0f0f0;
	text-decoration: inherit;
}
.menu--pinterest.bg-image {
	background-image: url('../images/pinterest-logo-icon.png');
	width: 26px;
	height: 26px;
	position: relative;
}
.social-icon.icon-pinterest {
	margin-left: 5px;
}
/*Responsive*/
@media(max-width:1700px){
	:root {
		--h1-font-size: 60px;
		--h2-font-size: 45px;
		--h3-font-size: 38px;
		--h4-big-font-size: 32px;
		--h4-font-size: 30px;
		--h5-font-size: 20px;
		--h6-font-size: 18px;
		--paragraph-size: 14px;
		--body-size: 16px;
	}
	.content-center-wide {		max-width: 94%;	}
	.each-recipe-section {		height: 800px;		width: 450px !important;	}


}
@media(max-width:1500px){
	:root {
		--h1-font-size: 55px;
		--h2-font-size: 42px;
		--h3-font-size: 35px;
		--h4-big-font-size: 30px;
		--h4-font-size: 28px;
		--h5-font-size: 20px;
		--h6-font-size: 18px;
		--paragraph-size: 14px;
		--body-size: 16px;
	}
	.content-center {	max-width: 90%;}
	.e-con.e-flex > .e-con-inner .content-center {	max-width: 100%;}
	.e-con.e-flex > .e-con-inner {		max-width: 90%;	}
	.each-recipe-section {		height: 700px;		width: 400px !important;		padding-bottom: 50px;	}
	.recipes-section {		margin-bottom: 140px;	}
	.recipes-section-filter .each-recipe-section {		height: 500px;		padding: 0 40px 25px;	}
	.button-more-container {		margin-top: 50px;		margin-bottom: 80px;	}
	.image-content-inner {		margin-bottom: 110px;	}
	.services-section-wrapper {		column-gap: 40px;	}
	.footer-follow-inner {		padding: 150px 0 150px;	}
	.footer-follow-box {		padding: 55px 45px 55px;	}
	#site-footer {		margin-top: 80px;	}
	.recipe-steps-wrapper .each-step {		padding: 45px 40px 30px;	}




}
@media(max-width:1399px){
	.menu-icons {		margin-left: 50px;	}
	.search-button {		width: 32px;		height: 32px;		top: 14px;		right: 20px;	}
	.masthead {		padding: 35px 0 42px;	}
	.search-container input[type="text"] {	width: 360px;	height: 60px;		padding: 11px 20px;	}
	.recipes-section-list .each-recipe-section {		max-height: 100vh;		min-height: 600px;		height: 600px;		width: 350px !important;		padding: 0 30px 45px;	}
	.recipes-section {		margin-bottom: 120px;	}
	.recipes-filter-wrapper {		column-gap: 30px;	}
	.recipes-section-filter .each-recipe-section {		height: 500px;		padding: 0 30px 25px;	}
	.image-content-inner {		margin-bottom: 90px;	}
	.services-section {		margin-bottom: 60px;	}
	.recipe-steps-wrapper .each-step {	min-height: 440px;	padding: 40px 30px 30px;	}
	.recipe-steps-wrapper .each-step table td {		font-size: 18px;	}
	.recipe-text-wrapper {		row-gap: 50px;	}
	.recipe-text-inner .description p, .recipe-text-inner {		font-size: 18px;	}
	.recipe-steps-wrapper {		flex-flow: column;		row-gap: 20px;	}
	.recipe-steps-wrapper .each-step {		min-height: 350px;	width: 100%;	}
	



}
@media(max-width:1279px){
	:root {
		--h1-font-size: 50px;
		--h2-font-size: 40px;
		--h3-font-size: 35px;
		--h4-big-font-size: 28px;
		--h4-font-size: 25px;
		--h5-font-size: 20px;
		--h6-font-size: 18px;
		--paragraph-size: 14px;
		--body-size: 15px;
	}
	.masthead {		padding: 30px 0 35px;	}
	.recipes-section-list .each-recipe-section {padding: 0 30px 35px;		min-height: 550px;		height: 550px;		width: 300px !important;	}
	.recipes-section {		margin-bottom: 100px;	}
	.each-recipe-category .cat-image {		width: 100px;		height: 100px;	}
	.recipes-filter-categories {		margin-bottom: 50px;	}
	/*.recipes-section-filter .each-recipe-section {		width: calc(50% - 10px) !important;	}*/
	.each-service .title br {		display: none;	}
	.image-content-inner {		margin-bottom: 80px;	}
	.services-section-wrapper {		column-gap: 30px;	}
	.footer-follow-inner {		padding: 130px 0 130px;	}
	#site-footer {		margin-top: 60px;	}
	.footer-menu, .footer-menu .menu {		column-gap: 30px;	}
	.menu-icons {		margin-left: 30px;	}
	.search-container input[type="text"] {		width: 320px;		height: 54px;		padding: 6px 15px;	}
	.search-button {		width: 30px;		height: 30px;		top: 12px;		right: 15px;	}
	.recipes-section-list .each-recipe-section {		padding: 0 25px 25px;		min-height: 500px;		height: 500px;		width: 300px !important;	}
	.recipes-section {		margin-bottom: 80px;	}
	.each-recipe-category .cat-image {		width: 90px;		height: 90px;	}
	.recipes-filter-categories {		margin-bottom: 45px;	}
	.recipes-filter-wrapper {		column-gap: 20px;	}
	.recipes-filters-holder {		width: 160px;	}
	.recipes-posts {		width: calc(100% - 160px);	}
	.recipes-filter-duration {		margin-bottom: 30px;	}
	.recipes-section-filter .each-recipe-section {		padding: 0 25px 25px;	}
	.each-recipe-section::before {		height: 85%;	}
	.button-more-container {		margin-top: 40px;		margin-bottom: 50px;	}
	.image-content-inner {		margin-bottom: 70px;	column-gap: 40px;	}
	.services-section-wrapper {		flex-flow: wrap;	}
	.services-section-wrapper .each-service {		width: calc(50% - 20px);		margin-bottom: 40px;	}
	.services-section {		margin-bottom: 30px;	}
	.footer-follow-inner {		padding: 120px 0 120px;	}
	#site-footer {		margin-top: 50px;	}
	.recipes-filter-categories.articles-filter-wrapper {		flex-flow: wrap;		row-gap: 20px;	}
	.recipes-posts {		width: 100%;	}
	.recipes-section-filter .each-recipe-section {		height: 350px;	}
}
@media(max-width:1023px){
	.elementor-element {		--widgets-spacing: 0 !important;	}
	.recipes-filter-wrapper {		flex-flow: column;		row-gap: 30px;	}
	.recipes-posts {		width: 100%;	}
	.recipes-filters-holder {		width: 100%;		display: flex;		flex-flow: row;	}
	.recipes-filter-duration {		margin-bottom: 0;	}
	.recipes-filters-holder h2 {		margin-bottom: 0;		width: 30%;	}
	.recipes-filters.recipes-filter-filter, .recipes-filters.recipes-filter-duration {		width: 35%;	}
	.image-content-inner {		flex-flow: column;		row-gap: 40px;	}
	.image-content-col.bg-image-holder, .image-content-col.image-content-wrapper {		width: 100%;	}
	.button-container-share {		top: 20px;		right: 20px;		width: 30px;		height: 30px;	}
	.login--loader .loader {		top: 180px;	}
	.single-recipe-header {		padding: 60px 0;		flex-flow: column;	}
	.single-recipe-image {		width: 100%;	}
	.single-recipe-image .single-recipe-img {		margin: 0 auto;	}
	.single-recipe-info {		width: 100%;	}
	.content-center .e-con.e-flex > .e-con-inner {		max-width: 100%;	}
	.single-recipe-header {		padding: 50px 0;	}


}
@media(max-width:767px){
	.menu-icons {		margin-left: 10px;	}
	.search--content {		margin-top: 40px;	}
	.search-results-content {		margin: 50px 0 80px;	}
	.footer-follow-inner {		padding: 100px 0 100px;	}
	.footer-menu, .footer-menu .menu {		column-gap: 20px;	}
	.social-icon.icon-instagram .social-text {		display: none;	}
	.footer_menu_container {		padding: 25px 0 25px;	}
	.search-container {		position: absolute;		top: 66px;		left: 0;		background-color: #181818;		width: 100%;		z-index: 2;	}
	.admin-bar .search-container {		top: 111px;	}
	.header-container {		margin-left: auto;	}
	.search-container form {		max-width: 90%;		margin: 0 auto;		position: relative;	}
	.search-container form input {		padding-left: 0 !important;	}
	.search-button {		width: 27px;		height: 27px;		top: 12px;		right: 0;	}
	.search-container input[type="text"] {		width: 100%;	}
	.main-website-content {		margin-top: 100px;	}
	.admin-bar .main-website-content {		margin-top: 120px;	}
	.masthead {		padding: 20px 0 10px;	}
	.single-recipe-info {		padding-top: 30px;	}
	.single-recipe-header {		padding: 30px 0;	}
	.single-recipe-info-bottom {		font-size: 18px;	}
	.recipe-steps-wrapper .each-step table td {		font-size: 16px; width: 50%;	}
	.recipe-steps-wrapper .each-step {		min-height: 400px;	}
	.recipe-text-inner .description p, .recipe-text-inner  {		font-size: 16px;	}
	.recipe-text-wrapper {		margin-bottom: 40px;	}
	.recipe-footer-text {		font-size: 30px;	}
	.recipe-text .content-center-narrow {		margin-bottom: 50px;	}
	.search-results-content h1 {		font-size: 24px;	}
	.services-section-wrapper h4 {		font-size: 24px;	}
	.masthead .logo_container {		max-width: 140px;	}
	.search-container {		top: 120px;	}
	.recipes-section-filter .each-recipe-section {		height: 300px;	}
	.recipe-steps-wrapper .each-step .description p {	font-size: 16px;}

}
@media(max-width:639px){
	:root {
		--h1-font-size: 45px;
		--h2-font-size: 35px;
		--h3-font-size: 30px;
		--h4-big-font-size: 25px;
		--h4-font-size: 22px;
		--h5-font-size: 18px;
		--h6-font-size: 16px;
		--paragraph-size: 14px;
		--body-size: 14px;
	}
	.recipes-filters-holder {		flex-flow: wrap;	}
	.recipes-filters-holder h2 {		margin-bottom: 10px;		width: 100%;	}
	.recipes-filters.recipes-filter-filter, .recipes-filters.recipes-filter-duration {		width: 50%;	}
	.recipes-section-filter .each-recipe-section {			padding: 0 20px 20px;	}
	.image-content-col.bg-image-holder {		height: 350px;	}
	.footer-follow-box {		max-width: 80%;		padding: 35px 40px;	}
	.footer-follow-inner {		padding: 80px 0 80px;	}
	#site-footer {		margin-top: 40px;	}
	.search-results-content {		margin: 20px 0 50px;	}
	.search--content {		margin-top: 20px;	}
	.recipes-section-filter .each-recipe-section {	height: 250px;}
	.recipe-steps-wrapper .each-step .description p {	font-size: 15px;}

}
@media(max-width:479px){
	:root {
		--h1-font-size: 40px;
		--h2-font-size: 32px;
		--h3-font-size: 28px;
		--h4-big-font-size: 22px;
		--h4-font-size: 20px;
		--h5-font-size: 18px;
		--h6-font-size: 16px;
		--paragraph-size: 14px;
		--body-size: 14px;
	}
	.recipes-section-list .each-recipe-section {			width: 260px !important;	}
	.recipes-section {		margin-bottom: 70px;	}
	.each-recipe-category .cat-image {		width: 70px;		height: 70px;	}
	.recipes-filter-categories {		column-gap: 15px;	}
	/*.recipes-section-filter .each-recipe-section {		width: 100% !important;	}*/
	.services-section-wrapper .each-service {		width: 100%;	}
	.image-content-inner {		margin-bottom: 50px;	}
	.services-section {		margin-bottom: 20px;	}
	.footer-follow-box {		padding: 30px 35px;		border-radius: 15px;	}
	.footer-follow-box h2 {		margin-bottom: 5px;	}
	.footer-follow-inner {		padding: 60px 0 60px;	}
	.footer-menu {		flex-flow: column;		align-items: flex-start;		row-gap: 8px;	}
	.footer_menu_container {	padding: 20px 0 20px;	align-items: flex-start;	}
	.recipes-section-filter .each-recipe-section {	height: 200px; width: calc(33.33% - 7px) !important;}
	.recipes-section-filter {		gap: 10px;	}
	.recipe-steps-wrapper .each-step .description p {	font-size: 14px;}
	.recipe-steps-wrapper .each-step .description span, .recipe-steps-wrapper .each-step .description em {	width: 90px;}
	.recipe-steps-wrapper .each-step .description p {	padding-left: 100px;}
	
}
@media(max-width:374px){
	:root {
		--h1-font-size: 36px;
		--h2-font-size: 30px;
		--h3-font-size: 28px;
		--h4-big-font-size: 22px;
		--h4-font-size: 20px;
		--h5-font-size: 18px;
		--h6-font-size: 16px;
		--paragraph-size: 13px;
		--body-size: 13px;
	}
	.masthead .logo_container {		max-width: 140px;	}
	.menu--instagram {		width: 24px;		height: 24px;	}
	.search-container input[type="text"] {		height: 44px;	}
	.main-website-content {		margin-top: 80px;	}
	.recipes-section-list .each-recipe-section {			padding: 0 20px 20px;	min-height: 400px;		height: 400px;		width: 220px !important;	}
	.each-recipe-category .cat-image {		width: 60px;		height: 60px;	}
	.each-recipe-category {		font-size: 14px;	}
	.recipes-filter-categories {		margin-bottom: 40px;	}
	.image-content-col.bg-image-holder {		height: 250px;	}
	.services-section {		margin-bottom: 0;	}
	.menu--instagram {		width: 22px;		height: 22px;	}
	.footer-follow-box {		padding: 25px 30px;		border-radius: 10px;	}
	.search-button {	top: 8px;}
	.recipes-section-filter .each-recipe-section {	height: 180px;}


}