/*
Theme Name: Lectin Free Living
Author: Lectin Free Living
Author URI: https://Lectin-free-living.ch
Description: The Lectin Free Living Theme based on the famous Wordpress CMS.
Version: 1.0
*/

@import url(fonts/stylesheet.css);
:root {
    /* background color */
    --body: #fafafa;
    --bg-gray: #F1F5F8;
    --bg-gray-purple: #EFF4FE;
    --bg-blue-light: #DFF8F8;
    --bg-white: #F1F5F8;
    --bg-purplelight: #F0EBFE;
    --bg-purple: #927ECF;
    --bg-green: #368888;
    --btn-bg: #535666;
    --btn-hover-bg: rgba(83, 86, 102, 0.7);
    /* text color */
    --color-dark: #535666;
    --color-dark-hover: #927ECF;
    --color-green: #368888;
    --color-grren-hover: rgba(54, 136, 136, 0.7);
    --color-purple: #927ECF;
    --color-gray: #FAFAFA;
    /* border color */
    --border-color: rgba(74, 77, 96, 0.1);
    --border-color-two: rgba(74, 77, 96, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    background: var(--body);
    font-size: 14px;
    line-height: 1;
    color: var( --color-dark);
    font-family: 'Metropolis';
    font-weight: normal;
}

ul {
    list-style: none;
    padding: 0;
}

p {
    margin-bottom: 20px;
    line-height: 24px;
}

a {
    color: var(--color-dark);
    text-decoration: none;
    transition: 0.4s;
}


/* ----- Heading Font CSS ------ */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

strong {
    font-weight: bold;
}

a:focus,
.btn:focus,
button:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    outline: none;
    box-shadow: none;
}

input:focus {
    border: none;
    outline: none;
}


/* global css start */

.full_width {
    width: 100%;
    float: left;
}

.wrapper {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
}

.no_found {
    text-align: center;
    width: 100%;
}

.btn_one {
    padding: 21px 32px;
    min-width: 160px;
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    border-radius: 15px;
    font-weight: bold;
    line-height: 1;
    background: var(--btn-bg);
    color: var(--color-gray);
    transition: 0.4s;
}

.btn_one:hover {
    background: var(--btn-hover-bg);
}
body .wpcf7-spinner { position: absolute; }
.btn_two {
    padding: 15px 23px;
    min-width: 140px;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 10px;
    font-weight: bold;
    line-height: 1;
    background: var(--btn-hover-bg);
    color: var(--color-gray);
    ;
    transition: 0.4s;
}

.btn_two:hover {
    color: var(--color-gray);
    background: var(--btn-bg);
}

.main-content {
    margin-top: 150px;
}


/* .home .main-content{margin-top: 0;} */

.main-content li {
    line-height: 24px;
}

.main-content ul li {
    list-style-type: disc;
}

.main-content ul,
.main-content ol {
    padding-left: 18px;
    margin-bottom: 20px;
}

.title_box {
    margin-bottom: 40px;
}

.title_box h1 {
    margin-bottom: 0;
}

.title_box h1 sup {
    font-size: 14px;
    color: var(--color-purple);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    top: -7px;
}

.no_found {
    text-align: center;
}

.no_found img {
    display: block;
    margin: 0 auto;
}

.layout {
    overflow: hidden;
}


/* global css end */


/* ******************************* main css ***************************** */


/* header start */

.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    transition: 0.4s;
    padding: 34px 0;
    background: var(--bg-white);
    transition: 0.4s;
}

.header .inner_part {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header .left_menu {
    width: calc(50% - 120px);
}

.header .right_menu {
    width: calc(50% - 120px);
}

.header .logo {
    width: 97px;
}

.header .logo a {
    display: block;
    transition: 0.4s;
}

.header ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header ul li {
    display: inline-block;
    position: relative;
    margin-right: 27px;
    padding-right: 27px;
}

.header .right_menu ul li{ margin-right: 70px;
    padding-right: 70px;}

.header ul li::before {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: var(--color-purple);
}

.header ul li:last-child::before {
    display: none;
}

.header ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.header li a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #1E2125;
    text-transform: uppercase;
}

.header li a:hover,
.header li.current-menu-item a {
    color: #368888;
}

.header.sticky {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.home .header {
    background-image: none;
    background: var(--body);
}


/* .home .header.sticky{background-color: #1E2125;padding: 34px 0;background-image: radial-gradient(rgba(0, 0, 0, 0) 0% , rgba(0, 0, 0, 0.4) 100%);} */


/* header end */


/* banner start */

.banner {
    min-height: 756px;
    position: relative;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    padding: 100px 0;
}


/* .banner::before{pointer-events: none; content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-image: radial-gradient(rgba(0, 0, 0, 0) 0% , rgba(0, 0, 0, 0.4) 100%);z-index: 1;} */

.banner .banner_text {
    position: relative;
    padding: 0 20px 0 90px;
    max-width: 700px;
    z-index: 2;
    
    transition: 0.3s ease-in-out;
    
}

.banner_text::before {
    pointer-events: none;
    content: "";
    position: absolute;
    top: -10%;
    left: -5%;
    width: 505px;
    height: 505px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    z-index: -1;
    mix-blend-mode: lighten;
    filter: blur(100px);
}

.banner h1 {
    font-size: 90px;
    line-height: 81px;
    margin-bottom: 20px;
    color: var(--color-green);
    text-transform: initial;
}

.banner h3 {
    text-transform: initial;
}

.banner .button_box {
    margin: 28px 0 0;
}

.scroll_down {
    background: url(images/arrow-down.svg)center no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.banner .video_sec {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 0;
    background: transparent;
    border: none;
    z-index: 1;
    cursor: pointer;
    border-radius: 100%;
}

.banner_slider .slick-arrow.slick-prev {
    background: url(images/arrow-left-black.svg)center no-repeat rgba(74, 77, 96, 0.1);
    left: 24px;
}

.banner_slider .slick-arrow.slick-next {
    background: url(images/arrow-right-black.svg)center no-repeat rgba(74, 77, 96, 0.1);
    right: 24px;
}

.banner.slick-current .banner_text {
   /* top: 0;
    opacity: 1;
    */
}

.banner.slick-current .banner_text.loaded {
    top: 0;
    opacity: 1;
}

/* banner end */


/* food categories start */

.food_categories {
    padding: 50px 0 75px;
}


/* .food_categories .title_box{margin-bottom: 50px;} */

.food_categories .inner_part {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 50px;
}
.alm-listing.alm-ajax {  display: flex;
    flex-wrap: wrap; }

.food_card {
    width: 23%;
    margin-right: 2.6%;
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 20px;
}

.food_card:nth-child(4n) {
    margin-right: 0;
}

.food_card .image {
    margin-bottom: 25px;
}

.food_card .image img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.tages {
    margin-bottom: 15px;
    width: 100%;
    float: left;
}

.tages span,
.tages a {
    width: auto;
    float: left;
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: bold;
    color: var(--color-green);
    border-radius: 45px;
    background: var(--bg-blue-light);
    line-height: 12px;
    padding: 8px 12px;
    margin-right: 6px;
}

.tages span:last-child,
.tages a:last-child {
    margin-right: 0;
}

.food_card .text {
    width: 100%;
    float: left;
}

.food_card .text h3 {
    color: var(--color-dark);
    font-weight: 500;
    text-transform: inherit;
    margin-bottom: 10px;
}

.food_card .text h3 a {
    color: var(--color-dark);
    font-weight: 500;
    display: inline-block;
}

.food_card .text h3 a:hover {
    color: var(--color-dark-hover);
}

.food_card .text p {
    font-size: 14px;
    line-height: 17px;
    color: var(--color-dark);
    font-weight: normal;
}

.food_card .text p:last-child {
    margin-bottom: 0;
}

.food_card .content .button {
    position: absolute;
    left: 0;
    bottom: 25px;
}

.food_card .content .button a {
    font-size: 12px;
    color: var(--color-green);
    text-transform: uppercase;
    font-weight: bold;
}

.food_card .content .button a:hover {
    color: var(--color-grren-hover);
}

.food_categories .button_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


/* food categories end */


/* stay connected start */

.stay_connected {
    padding: 70px 0;
    background: var(--bg-white);
}

.stay_connected .wrapper {
    max-width: 1150px;
}

.stay_connected .top_content {
    text-align: center;
    margin-bottom: 20px;
}

.stay_connected h2 {
    color: var(--color-dark);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.stay_connected p {
    font-size: 20px;
    line-height: 24px;
    color: var(--color-green);
    font-weight: 500;
}

.stay_connected .inner_part {
    padding-top: 15px;
}

.stay_connected .field {
    width: 49%;
    float: left;
    margin-bottom: 30px;
}

.stay_connected .field.right {
    float: right;
}

.stay_connected input {
    padding: 20px 30px;
    color: var(--color-dark);
    font-size: 20px;
    font-weight: normal;
    font-family: 'Metropolis';
    line-height: 1;
    background: #FAFAFA;
    border: 1px solid var(--border-color-two);
    border-radius: 79px;
    width: 100%;
    float: left;
}

.stay_connected .field.submit {
    float: unset;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.stay_connected input[type="submit"] {
    cursor: pointer;
    padding: 21px 32px;
    min-width: 170px;
    width: auto;
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    border-radius: 15px;
    font-weight: bold;
    line-height: 1;
    background: var(--btn-bg);
    color: var(--color-gray);
    border: 1px solid var(--btn-bg);
    transition: 0.4s;
}

.stay_connected input[type="submit"]:hover {
    background: var(--btn-hover-bg);
    border-color: var(--btn-hover-bg);
}

.stay_connected .field p {
    margin-bottom: 0;
}

.wpcf7-response-output {
    margin-right: 0;
    padding: 15px !important;
    width: 100%;
    float: left;
    text-align: center;
    background: #FAFAFA;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.stay_connected input.wpcf7-not-valid {
    border-color: #dc3232;
}


/* stay connected end */


/* breadcrumbs start */

.breadcrumbs {
    color: #2A2A36;
    padding: 30px 0 25px;
}

.breadcrumbs a,
.breadcrumbs span {
    width: auto;
    font-size: 14px;
    font-weight: bold;
    color: var(--color-green);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs .current-item,
.breadcrumbs a:hover,
.breadcrumbs span:hover {
    color: var(--color-dark);
}

.breadcrumbs span[typeof="ListItem"] {
    margin-right: 8px;
    margin-left: 8px;
    margin-bottom: 5px;
}

.breadcrumbs span[typeof="ListItem"]:first-child {
    margin-left: 0;
}

.breadcrumbs .current-item {
    text-decoration: none;
}


/* breadcrumbs end */


/* filter section start */

.filter_section {
    padding: 95px 0 0px;
    position: relative;
    z-index: 2;
}


/* .filter_section::before{z-index: -1; content: "";position: absolute;width: 604px;height: 482px;left: 50%;transform: translateX(-50%);top: 0px;background: #322756;opacity: 0.2;filter: blur(141.5px); border-radius: 60px;} */

.filter_section .top_text {
    text-align: center;
    margin-bottom: 30px;
}

.wrap_text {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.filter_section .search {
    margin-bottom: 28px;
}

.filter_section .search input {
    color: var( --color-dark);
    ;
    padding: 20px 30px 20px 50px;
    border: 1px solid var(--border-color-two);
    border-radius: 79px;
    width: 100%;
    background: transparent;
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    background: url(images/search.svg)left 20px center no-repeat;
}

.filter_list .checkbox {
    display: none;
}

.filter_list .tag:hover .checkbox { display: block; }

.filter_list {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	padding: 0 120px;
}
.filtertitle { text-align: center; }
.filter_list span.count {     width: 10px;
    display: inline-block;
    content: ""; }

.filter_list .tag {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 8px;
}

.filter_list .tag label,
.filter_list .tag .submit {
    transition: 0.4s;
    color: var(--color-gray);
    cursor: pointer;
    background: var(--btn-bg);
    padding: 15px 20px;
    border-radius: 15px;
    margin: 0 5px;
    border: 0;
}

.filter_list .tag label:hover,
.filter_list .tag .submit:hover {
    background: var(--btn-hover-bg);
}

.filter_list .tag label strong {
    color: #fff;
}

.filter_list .checkbox {
    position: absolute;
    left: 0;
    top: calc(100% - 10px);
    width: 240px;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
	padding-top: 20px;
}
.filter_list .checkbox .form-group:first-child { border-top-left-radius: 15px; border-top-right-radius: 15px; }
.filter_list .checkbox  .form-group { background: var(--bg-gray); }
.filter_list .form-group input {
    display: none;
}

.filter_list .form-group label {
    transition: unset;
    margin: 0;
    display: block;
    border-radius: 0;
    text-align: left;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    color: var(--color-purple);
    font-weight: normal;
}

.filter_list .form-group label:hover {
    background-color: var(--bg-purplelight);
}

.filter_list .form-group label strong {
    margin-left: 5px;
}

.filter_list .form-group:last-child label {
    border-bottom: 0;
}

.filter_list .form-group input:checked+label {
    background: url(images/check.svg)right 15px center no-repeat var(--bg-purplelight);
    font-weight: 500;
}


/* .filter_list  .tag:not(.all)  .dropdown {position: relative;}
.filter_list  .tag:has(.all)  .dropdown:after{content: "";position: absolute;right: 0;top: 0; background: url(images/green-arrow.svg) right 15px center no-repeat rgba(42, 42, 54, 1);} */

.filter_list {
    padding-bottom: 42px;
}

.filter_list .tag label.slideup {
    background-color: var(--bg-purple);
    ;
}

.filter_list .tag label.active,
.filter_list .tag .submit.active {
    background-color: var(--bg-purple);
}

.filter_list .tag label.active:hover,
.filter_list .tag label.slideup:hover {
    background-color: #BCAEE4;
}

.filter_list .tag:not(.all) .dropdown {
    background-image: url(images/arrow-white.svg);
    padding-right: 45px;
    background-position: right 20px center;
    background-repeat: no-repeat;
}


/* filter section end */


/* food detail sec start */

.food_detail_sec .inner_part {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.food_detail_sec .left_part {
    width: 74%;
    float: left;
}

.food_detail_sec .right_part {
    width: 23%;
    float: right;
}

.food_detail_sec .left_part img {
    display: block;
    border-radius: 15px;
    margin-bottom: 25px;
}

.food_detail_sec .left_part p strong,
.food_detail_sec .left_part p a {
    color: #B29AFC;
}

.food_detail_sec .left_part .card {
    list-style-type: none;
    margin-bottom: 20px;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 15px;
    width: 100%;
    float: left;
}

.food_detail_sec .left_part .card p strong {
    display: block;
    color: var(--color-dark);
}

.food_detail_sec .left_part .card p:last-child {
    margin-bottom: 0;
}

.food_detail_sec .tages span,
.food_detail_sec .tages a {
    margin-bottom: 10px;
    font-size: 14px;
    border-radius: 15px;
    padding: 18px 21px;
    margin-right: 10px;
}

.food_detail_sec .right_categories {
    border-radius: 15px;
    margin-top: 20px;
    background: var(--bg-white);
}

.food_detail_sec .right_categories .card {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.food_detail_sec .right_categories .card:last-child {
    border-bottom: none;
}

.food_detail_sec .right_categories .card .title {
    line-height: 22px;
    width: calc(100% - 50px);
    float: left;
}

.food_detail_sec .right_categories .card .title strong {
    display: block;
}

.food_detail_sec .right_categories .card .reply {
    text-transform: uppercase;
    font-weight: bold;
    width: 50px;
    float: right;
    text-align: right;
}

.food_detail_sec .right_categories .card .reply.no {
    color: var(--color-purple);
}

.food_detail_sec .right_categories .card .reply.yes {
    color: var(--color-green);
}


/* food detail sec end */

.food_categories.recipes {
    padding-top: 0;
}

.food_categories.recipes .title_box {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.food_categories.recipes h1 {
    width: 50%;
}

.food_categories.recipes .search {
    width: 46%;
    position: relative;
}

.food_categories.recipes .search input {
    color: rgba(74, 77, 96, 1);
    padding: 15px 30px 15px 50px;
    border: 1px solid rgba(74, 77, 96, 0.2);
    border-radius: 79px;
    width: 100%;
    background: transparent;
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
}

.food_categories.recipes .search input[type="submit"] {
    cursor: pointer;
    border-radius: 0;
    background: url(images/search-white.svg) center no-repeat;
    width: 50px;
    height: 100%;
    position: absolute;
    left: 2px;
    top: 0;
    padding: 0;
    font-size: 0;
    border: none;
}

.topics_name {
    padding-bottom: 30px;
}

.topics_name .inner_part {
    display: flex;
    flex-wrap: wrap;
}

.topics_name .card {
    width: 23%;
    margin-right: 2.6%;
    margin-bottom: 50px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.topics_name .card:nth-child(4n) {
    margin-right: 0;
}

.topics_name .card h3 {
    font-size: 22px;
    margin-bottom: 0;
    color: #fff;
}

.topics_name .card img {
    width: 100%;
    display: block;
}

.topics_name .card .overlap_text {
    position: absolute;
    left: 0;
    top: 0;
    padding: 15px;
    width: 100%;
    height: 100%;
    background: radial-gradient(72.63% 72.63% at 50% 50%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.490885) 100%), rgba(44, 32, 80, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.4s;
}

.topics_name .card:hover .overlap_text {
    background: radial-gradient(72.63% 72.63% at 50% 50%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.490885) 100%), rgba(44, 32, 80, 0.6);
}

.food_categories.blog {
    padding-top: 0;
}

.food_categories.blog .title_box {
    margin-bottom: 40px;
}

.food_categories.blog .food_card .image img {
    border-radius: 17px;
}

.food_categories .date h6 {
    font-size: 10px;
    color: #A3D8D8;
    margin-bottom: 10px;
}

.meal_plans {
    padding-bottom: 20px;
}

.meal_plans .inner_part img {
    width: 100%;
    display: block;
    margin-bottom: 25px;
    border-radius: 15px;
}

.meal_plans .tages span {
    margin-bottom: 10px;
    font-size: 14px;
    border-radius: 15px;
    padding: 18px 21px;
    margin-right: 10px;
}


/* accordian start  */

.accordion {
    margin-bottom: 50px;
}

.accordion .inner_part {
    margin-bottom: 20px;
}

.accordion .acc-items {
    background: var(--bg-white);
    margin-bottom: 30px;
    border: 1px solid var(--bg-white);
    border-radius: 15px;
}

.accordion .acc-items:hover {
    background: var(--bg-blue-light);
    border-color: var(--bg-blue-light);
}

.accordion .acc-title {
    padding: 30px;
    cursor: pointer;
}

.accordion .acc-items.active {
    border: 1px solid #A3D8D8;
}

.accordion .acc-title h2 {
    margin-bottom: 0;
    position: relative;
    padding-right: 40px;
}

.accordion .acc-title h2::after {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    background: url(images/green-arrow.svg)center no-repeat;
    width: 14px;
    height: 8px;
    transition: 0.7s;
}


/* .accordion .acc-items:hover .acc-title h2::after{background: url(images/chevron-down.svg)center no-repeat;} */

.accordion .acc-title.active h2::after {
    transform: rotate(180deg);
}

.accordion .acc-content {
    display: none;
    padding: 1px 30px 5px;
}

.accordion .acc-content ul,
.accordion .acc-content ol {
    padding-left: 0;
    width: 100%;
    float: left;
}

.accordion .acc-content li {
    list-style-type: none;
    width: 100%;
    float: left;
    margin-bottom: 12px;
}

.accordion .acc-content li strong {
    color: var(--color-green);
    text-transform: uppercase;
    width: 135px;
    float: left;
}

.accordion .acc-content li small {
    width: calc(100% - 135px);
    float: right;
    font-size: 14px;
    line-height: 24px;
    padding-left: 5px;
}


/* accordian end  */


/* food list start */

.food_list_grid h1.skyblue strong {
    color: var(--color-green);
}

.food_list_grid h1.purple strong {
    color: var(--color-purple);
}

.title_box.type {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.title_box.type .icon_list svg {
    margin-left: 5px;
    cursor: pointer;
}

.title_box.type .icon_list svg.active .bg {
    fill: #368888;
}

.title_box.type .icon_list svg.active .stroke {
    stroke: #DFF8F8;
}

.food_card_list_grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 32px;
}

.food_card_list_grid .card {
    width: calc(25% - 18px);
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    margin-right: 24px;
    margin-bottom: 24px;
}

.food_card_list_grid:not(.grid) .card:nth-child(4n) {
    margin-right: 0;
}

.food_card_list_grid .card_items {
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.food_card_list_grid .card_items .img {
    width: 44px;
}

.food_card_list_grid .card_items .img img {
    border-radius: 15px;
}

.food_card_list_grid .card_items .title {
    width: calc(100% - 44px);
    padding-left: 10px;
}

.food_card_list_grid .card_items .title p strong {
    display: block;
}

.food_card_list_grid .card_items .title p {
    margin-bottom: 0;
    font-weight: normal;
}

.food_card_list_grid h2 {
    width: 100%;
    margin-bottom: 24px;
}


/* grid */

.food_card_list_grid.grid .card {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
}

.food_card_list_grid.grid .card .card_items_outer {
    display: flex;
    flex-wrap: wrap;
}

.food_card_list_grid.grid .card .card_items {
    width: calc(25% - 18px);
    margin-right: 24px;
    margin-bottom: 24px;
}

.food_card_list_grid.grid:not(.ingredients) .card .card_items:nth-child(4n) {
    margin-right: 0;
}


/* .list food list end */


/* food overview css start */

.food_overview_cards {
    padding-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
}

.food_overview_cards .card {
    width: calc(25% - 30px);
    margin-right: 40px;
    margin-bottom: 30px;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 15px;
    transition: 0.4s;
}

.food_overview_cards .card:nth-child(4n) {
    margin-right: 0;
}

.food_overview_cards .card p {
    margin-bottom: 0;
    line-height: 16px;
}

.food_overview_cards .card h3,
.food_overview_cards .card h3 strong {
    font-weight: 500;
}

.food_overview_cards .card .icon {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    font-weight: 500;
    font-family: 'Metropolis';
    font-size: 24px;
    color: #1E2125;
}

.food_overview_cards .card.skyblue h3 strong {
    color: var(--color-green);
}

.food_overview_cards .card.skyblue .icon {
    background: var(--bg-green);
    color: #fff;
}

.food_overview_cards .card.purple h3 strong {
    color: var(--color-purple);
}

.food_overview_cards .card.purple .icon {
    background: var(--bg-purple);
}

.food_overview_cards .card.skyblue:hover {
    background: var(--bg-blue-light);
}

.food_overview_cards .card.purple:hover {
    background: var(--bg-purplelight);
}

.food_overview_cards.full {
    padding-bottom: 0;
}

.food_overview_cards.full .card {
    width: 100%;
    margin-right: 0;
}


/* food overview css end */


/* store start */

.store {
    padding-bottom: 50px;
}

.store .card {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
    transition: 0.4s;
}

.store .card:hover {
    background: var(--bg-blue-light);
}

.store .left_icon {
    width: 200px;
    background: #ffffff;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.store .left_icon img {
    width: auto;
    display: block;
}

.store .right_part {
    width: calc(100% - 200px);
}

.store .top_sec {
    padding: 25px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.store .top_sec h3 {
    margin-bottom: 0;
    font-weight: 500;
    text-transform: inherit;
    width: calc(100% - 150px);
    padding-right: 15px;
}

.store .top_sec h3 strong {
    color: var(--bg-green);
    font-weight: normal;
}

.store .top_sec .link_website {
    width: 150px;
    text-align: right;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-green);
}

.store .top_sec .link_website:hover {
    color: var(--color-dark);
}

.store .bottom_sec {
    border-top: 1px solid var(--border-color);
    padding: 25px 30px;
}

.store .bottom_sec p:last-child {
    margin-bottom: 0;
}


/* store end */


/* food blog inside start */

.food_detail_sec.blog_inside .inner_part {
    padding-bottom: 50px;
}

.food_detail_sec .text_editor h3 {
    font-weight: 500;
    text-transform: inherit;
    margin-bottom: 25px;
}

.food_detail_sec .text_editor p {
    margin-bottom: 25px;
}

.food_detail_sec .single_image img {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.food_detail_sec .single_image,
.two_image_block .image {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
}

.food_detail_sec .two_image_block .image {
    width: 49%;
    float: left;
    margin-right: 2%;
}

.food_detail_sec .two_image_block .image:nth-child(2n) {
    margin-right: 0;
}

.food_detail_sec .two_image_block .image img {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.food_detail_sec.blog_inside .button_box {
    margin-top: 20px;
}

.food_detail_sec.blog_inside h3 {
    text-transform: inherit;
}


/* food blog inside end */


/* recently added start*/

.recently_added h2 {
    margin-bottom: 40px;
}

.recently_added .card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.recently_added .card .image {
    width: 80px;
}

.recently_added .card .image img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.recently_added .card .text {
    width: calc(100% - 80px);
    padding-left: 20px;
}

.recently_added .card .text h4 {
    font-size: 10px;
    color: #A3D8D8;
    margin-bottom: 8px;
}

.recently_added .card .text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
}

.recently_added .card .text p:last-child {
    margin-bottom: 0;
}


/* recently added end*/


/* social share start */

.social_share {
    border-bottom: 1px solid #2A2A36;
    margin-bottom: 40px;
    padding-bottom: 40px;
    position: relative;
}

.social_share p {
    font-weight: bold;
}

.social_share .links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.social_share a {
    width: auto;
}

.social_share a img {
    display: block;
}

.social_share span {
    color: rgba(83, 86, 102, 0.7);
    font-size: 14px;
    font-weight: normal;
}

.social_share .hide {
    opacity: 0;
}

.heateor_sss_facebook {
    position: absolute;
    left: 0;
    top: 43px;
}

.heateor_sss_button_twitter {
    position: absolute;
    top: 43px;
    left: 51px;
}

.heateor_sss_button_instagram {
    position: absolute;
    top: 43px;
    left: 107px;
}

.heateor_sss_s_copy_link {
    position: absolute;
    top: 43px;
    right: 0;
}


/* social share end */


/* food details start */

.food_detail_sec.recipe_details .inner_part {
    border: none;
    padding-bottom: 15px;
}

.food_card_list_grid .ingredients h3 {
    margin-bottom: 30px;
}

.food_card_list_grid.grid.ingredients .card .card_items {
    width: 15%;
    margin-right: 2%;
    margin-bottom: 10px;
}

.food_card_list_grid.grid.ingredients .card .card_items:nth-child(6n) {
    margin-right: 0;
}

.food_card_list_grid.grid.ingredients .card:last-child {
    margin-bottom: 0;
}

.food_card_list_grid.ingredients {
    padding-bottom: 40px;
}

.text_with_tags .tages {
    margin-bottom: 0;
}

.text_with_tags .tages span {
    margin-bottom: 25px;
    font-size: 14px;
    border-radius: 15px;
    padding: 18px 15px;
    margin-right: 0;
    line-height: 24px;
    font-weight: normal;
    width: 100%;
}

.text_with_tags p {
    margin-bottom: 25px;
}

.go_back {
    margin-bottom: 55px;
    margin-top: 20px;
}

.menu_card_list {
    margin-bottom: 25px;
}

.menu_card_list .inner_part {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}

.menu_card_list .card {
    width: 25%;
    padding-right: 30px;
}

.menu_card_list .card:nth-child(4n) {
    padding-right: 0;
}

.menu_card_list .card h5 {
    color: var(--color-green);
    font-size: 14px;
}

.food_making_process {
    padding: 15px 0 10px;
}

.food_making_process ul,
.food_making_process ol {
    width: 100%;
    float: left;
}

.food_making_process ul li {
    list-style-type: none;
}

.food_making_process li {
    margin-bottom: 12px;
    width: 100%;
    float: left;
}

.food_making_process li strong {
    color: var(--color-purple);
    text-transform: uppercase;
    width: 160px;
    float: left;
}

.food_making_process li small {
    font-size: 14px;
    font-weight: normal;
    width: calc(100% - 160px);
    float: right;
    padding-left: 20px;
}

.services_step .step {
    border-bottom: 1px solid #2A2A36;
    padding: 24px 0 24px 34px;
}

.services_step .step:last-child {
    border-bottom: none;
}

.services_step p {
    font-weight: bold;
    margin-bottom: 0;
}

.services_step p strong {
    color: var(--color-purple);
    padding-left: 4px;
}

.services_step .step.phase {
    background: url(images/phase.svg)left center no-repeat;
}

.services_step .step.serves {
    background: url(images/serves.svg)left center no-repeat;
}

.services_step .step.total {
    background: url(images/timer-reset.svg)left center no-repeat;
}

.food_detail_sec .left_part .single_img_slider img {
    border-radius: 15px;
    margin-bottom: 0;
}

.single_img_slider {
    margin-bottom: 25px;
}

.single_img_slider .slick-list {
    border-radius: 15px;
    overflow: hidden;
}

.slider_nav {
    margin-bottom: 40px;
}

.slider_nav .slick-slide {
    margin: 0 5px;
}

.slider_nav {
    width: calc(100% + 10px);
    margin-left: -5px;
}

.slider_nav .image {
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.slider_nav .image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.4s;
}

.food_detail_sec .left_part .slider_nav img {
    margin-bottom: 0;
    border-radius: 15px;
    border: 2px solid transparent;
}

.slider_nav .slick-current img {
    border: 2px solid var(--color-purple);
}

.slider_nav .slick-current::before {
    opacity: 0;
    visibility: hidden;
}

.recipe_details .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 0;
    background: transparent;
    border: none;
    z-index: 1;
    cursor: pointer;
}

.recipe_details .slick-arrow.slick-prev {
    background: url(images/prev.svg)center no-repeat;
    left: 24px;
}

.recipe_details .slick-arrow.slick-next {
    background: url(images/next.svg)center no-repeat;
    right: 24px;
}

.recipe_details .slick-disabled {
    opacity: 0;
}


/* food details end */


/* about us start */

.video_section {
    padding-bottom: 60px;
}

.video_section .video_sec {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.text_editors {
    padding-bottom: 40px;
}

.text_editors h3 {
    text-transform: inherit;
    font-weight: 500;
    margin-bottom: 15px;
}

.text_editors p strong,
.text_editors a {
    color: #B29AFC;
    font-weight: 500;
}

.text_editors figure {
    width: auto;
    float: left;
    margin-right: 40px;
}

.text_editors figcaption {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.text_editors img {
    width: auto;
    display: block;
    border-radius: 15px;
    margin-bottom: 10px;
}

.text_editors blockquote {
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 24px;
}

.text_editors blockquote p:last-child {
    margin-bottom: 0;
}

.text_editors blockquote.green {
    background: var(--bg-blue-light);
    color: var(--color-green);
}

.text_editors blockquote.green strong,
.text_editors blockquote.green a {
    color: var(--color-green);
}

.text_editors blockquote strong,
.text_editors blockquote a {
    color: var(--color-dark);
}


/* about us end */


/* footer start */

.footer {
    padding: 44px 0;
    background-color: var(--body);
    position: relative;
    border-top: 1px solid #F1F5F8;
}

.footer .inner_part {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer .logo {
    width: 97px;
}

.footer .logo a {
    display: block;
}

.footer .logo img {
    display: block;
}

.footer .footer_menu {
    width: calc(100% - 280px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer .footer_menu li {
    margin-right: 40px;
    float: left;
    width: auto;
}

.footer .footer_menu li:last-child {
    margin-right: 0;
}

.footer .footer_menu a {
    font-size: 12px;
    color: var(--color-purple);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
}

.footer .footer_menu a:hover {
    color: var(--color-dark);
}

.social_icon {
    width: 180px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.social_icon a {
    background: var(--bg-purplelight);
    border-radius: 100%;
    width: 36px;
    height: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.social_icon a svg path {
    transition: 0.4s;
}

.social_icon a:hover svg path {
    fill: var(--bg-purplelight);
}

.social_icon a:hover {
    background: var(--bg-purple);
}


/* .footer::before{content: "";position: absolute;left: 0;top: 0;width: 100%;height: 100%; background-image: radial-gradient(rgba(0, 0, 0, 0) 0% , rgba(0, 0, 0, 0.4) 100%);} */


/* footer end */

.mobile_menu,
.menu_bar {
    display: none;
}

.food_categories .inner_part.border {
    border-bottom: none;
    margin-bottom: 0;
}

.food_categories .inner_part.border ul {
    padding-left: 0 !important;
}

.food_categories .inner_part .alm-reveal {
    display: flex;
    flex-wrap: wrap;
}

.food_categories .alm-btn-wrap .alm-load-more-btn {
    height: auto;
    box-shadow: none;
    border: none;
    padding: 15px 23px;
    min-width: 140px;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 10px;
    font-weight: bold;
    font-family: 'Metropolis';
    line-height: 1;
    background: var(--btn-hover-bg);
    color: var(--color-gray);
    transition: 0.4s;
}

.food_categories .alm-btn-wrap .alm-load-more-btn:hover {
    color: var(--color-gray);
    background: var(--btn-bg);
}

.food_categories .alm-btn-wrap .alm-load-more-btn.done,
.food_categories .alm-btn-wrap .alm-load-more-btn.loading {
    background-color: var(--btn-hover-bg) !important;
    color: var(--color-gray);
}

.food_categories .alm-btn-wrap {
    margin: 0;
    padding: 50px 0 0;
    border-top: 1px solid var(--border-color);
}

.ajax-load-more-wrap {
    width: 100%;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450!important;  
	background-color: #46b450!important; 
	color: #fff;
	border-radius: 50px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output { background: red; color:#fff; border-color: red !important;  border-radius: 50px; }

/* Responsive css start */

@media only screen and (max-width:1366px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 17px;
    }
    .btn_one {
        font-size: 16px;
    }
    .wrapper {
        max-width: 1140px;
    }
    .header ul li {
        margin-right: 18px;
        padding-right: 18px;
    }
    .header .left_menu {
        width: calc(50% - 68px);
    }
    .header .logo {
        width: 72px;
    }
    .header .right_menu {
        width: calc(50% - 68px);
    }
    .header {
        padding: 25px 0;
    }
    /* .header.sticky{} */
    .banner {
        padding-top: 100px;
        min-height: 580px;
        padding-bottom: 100px;
    }
    .banner_slider .slick-arrow.slick-prev {
        left: 20px;
    }
    .banner_slider .slick-arrow.slick-next {
        right: 20px;
    }
    .banner .banner_text {
        padding: 0 20px 0 60px;
    }
    .main-content {
        margin-top: 102px;
    }
    .banner h1 {
        font-size: 60px;
        line-height: 1;
    }
    .banner .button_box {
        margin-top: 20px;
    }
    .scroll_down {
        bottom: 30px;
    }
    .title_box h1 sup {
        top: -4px;
    }
    .header .right_menu ul li::before {
        right: -5px;
    }
    .filter_section .search input {
        font-size: 16px;
        padding: 17px 30px 17px 50px;
        border-radius: 30px;
    }
    .filter_section {
        padding-top: 70px;
    }
    .stay_connected p {
        font-size: 16px;
    }
    .stay_connected input {
        font-size: 16px;
        padding: 16px 25px;
        border-radius: 30px;
    }
    .stay_connected input[type="submit"] {
        padding: 18px 32px;
        font-size: 16px;
    }
    .footer .footer_menu li {
        margin-right: 24px;
    }
    .footer .logo {
        width: 72px;
    }
    .food_overview_cards .card {
        width: calc(25% - 20px);
        margin-right: 25px;
        margin-bottom: 25px;
    }
    .food_overview_cards {
        padding-bottom: 40px;
    }
    .food_card_list_grid .card {
        padding: 30px 20px;
    }
    .food_card_list_grid h2 {
        font-size: 20px;
    }
    .topics_name .card h3 {
        font-size: 18px;
    }
    .topics_name .card {
        margin-bottom: 2.6%;
    }
    .food_card_list_grid.grid.ingredients .card .card_items {
        width: 23.4%;
        margin-right: 2%;
        margin-bottom: 20px;
    }
    .food_card_list_grid.grid.ingredients .card .card_items:nth-child(6n) {
        margin-right: 2%;
    }
    .food_card_list_grid.grid.ingredients .card .card_items:nth-child(4n) {
        margin-right: 0%;
    }
    .accordion .acc-title {
        padding: 20px 30px;
    }
    .header .right_menu ul li{ margin-right: 35px;
        padding-right: 35px;}
}

@media only screen and (max-width:1120px) {
    h1 {
        font-size: 32px;
    }
    .banner .banner_text {
        padding: 0 20px 0 60px;
    }
    .food_card {
        width: 32%;
        margin-right: 2%;
    }
    .food_card:nth-child(4n) {
        margin-right: 2%;
    }
    .food_card:nth-child(3n) {
        margin-right: 0%;
    }
    /* .footer .logo {
        width: 70px;
    } */
    .footer .footer_menu {
        width: calc(100% - 250px);
    }
    .social_icon {
        width: 160px;
    }
    .footer .footer_menu li {
        margin-right: 18px;
    }
    .footer {
        padding: 30px 0;
    }
    .stay_connected {
        padding: 50px 0;
    }
    .food_categories {
        padding-bottom: 50px;
    }
    .filter_section {
        padding-top: 50px;
    }
    .header .left_menu,
    .header .right_menu {
        display: none;
    }
    .header .inner_part {
        justify-content: center;
    }
    .header.sticky {
        padding: 25px 0;
    }
    .scroll_down {
        bottom: 15px;
    }
    .banner {
        min-height: 525px;
        padding: 80px 0;
    }
    /* .banner h2 {letter-spacing: 2px;font-size: 24px;} */
    /* .banner h1 {font-size: 50px;line-height: 50px;} */
    .banner .button_box {
        margin-top: 30px;
    }
    .food_detail_sec .right_part {
        width: 260px;
    }
    .food_detail_sec .left_part {
        width: calc(100% - 299px);
    }
    .title_box h1 sup {
        top: -2px;
    }
    .food_overview_cards .card {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    .food_overview_cards .card:nth-child(4n) {
        margin-right: 2%;
    }
    .food_overview_cards .card:nth-child(3n) {
        margin-right: 0;
    }
    .food_card_list_grid .card {
        width: 32%;
        margin-right: 2%;
    }
    .food_card_list_grid:not(.grid) .card:nth-child(4n) {
        margin-right: 2%;
    }
    .food_card_list_grid:not(.grid) .card:nth-child(3n) {
        margin-right: 0%;
    }
    .food_card_list_grid {
        align-items: unset;
    }
    .food_card_list_grid.grid .card .card_items {
        width: 32%;
        margin-right: 2%;
    }
    .food_card_list_grid.grid:not(.ingredients) .card .card_items:nth-child(4n) {
        margin-right: 2%;
    }
    .food_card_list_grid.grid:not(.ingredients) .card .card_items:nth-child(3n) {
        margin-right: 0%;
    }
    .menu_card_list .card {
        width: 50%;
    }
    .accordion .acc-title {
        padding: 20px 25px;
    }
    .accordion .acc-title h2 {
        font-size: 23px;
    }
    .accordion .acc-content {
        padding-left: 25px;
        padding-right: 25px;
    }
    .accordion .acc-title h2::after {
        top: 9px;
    }
    /* mobile menu bar */
    .header .inner_part {
        position: relative;
    }
    .menu_bar {
        width: 40px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        display: block;
    }
    .menu_bar span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 4px;
        background: var(--bg-green);
        margin-bottom: 8px;
        transition: 0.4s;
    }
    .menu_bar span:last-child {
        margin-bottom: 0;
    }
    .mobile_menu {
        overflow: auto;
        text-align: right;
        transition: 0.4s;
        position: fixed;
        display: block;
        opacity: 0;
        visibility: hidden;
        right: 0%;
        top: 0px;
        z-index: 98;
        background: rgb(240, 235, 254, 0.8);
        background-image: radial-gradient(rgba(0, 0, 0, 0) 0%, rgba(250, 250, 250, 0.8) 100%);
        padding: 130px 35px 30px;
        height: 100%;
        width: 100%;
    }
    .mobile_menu li a {
        display: block;
        font-size: 16px;
        font-weight: bold;
        color: var(--color-dark);
        text-transform: uppercase;
    }
    .mobile_menu.show {
        opacity: 1;
        visibility: visible;
    }
    .mobile_menu li {
        margin-bottom: 18px;
    }
    .mobile_menu li a:hover {
        color: var(--color-green);
    }
    .scroll_stop {
        overflow: hidden;
    }
    .blur_body {
        filter: blur(5px);
    }
    .menu_bar.active span:nth-child(1) {
        transform: translateY(5px) rotate(-45deg);
    }
    .menu_bar.active span:nth-child(2) {
        display: none;
    }
    .menu_bar.active span:nth-child(3) {
        transform: translateY(-6px) rotate(45deg);
    }
    .header,.header.sticky{padding: 20px 0;}
}

@media only screen and (max-width:991px) {
    .btn_one,
    .stay_connected input[type="submit"] {
        font-size: 14px;
        padding: 18px 30px;
        letter-spacing: 1px;
    }
    .stay_connected input {
        font-size: 14px;
        padding: 15px 22px;
    }
    .filter_section .search input {
        font-size: 14px;
        padding: 15px 15px 15px 45px;
        background-size: 15px;
    }
    .footer .footer_menu {
        width: 100%;
        justify-content: center;
        margin: 30px 0 15px;
    }
    .social_icon {
        width: 100%;
        justify-content: center;
    }
    .social_icon a {
        margin: 0 4px;
    }
    .footer .inner_part {
        justify-content: center;
    }
    .footer .footer_menu ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer .footer_menu ul li {
        margin-bottom: 15px;
    }
    .food_detail_sec .right_part {
        width: 100%;
        margin-top: 30px;
    }
    .food_detail_sec .left_part {
        width: 100%;
    }
    .food_detail_sec .left_part .card {
        padding: 20px;
    }
    .food_card_list_grid .card {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }
    .food_card_list_grid:not(.grid) .card:nth-child(3n) {
        margin-right: 4%;
    }
    .food_card_list_grid:not(.grid) .card:nth-child(2n) {
        margin-right: 0%;
    }
    .social_share a,
    .social_share span {
        margin-right: 10px;
    }
    .social_share a:last-child {
        margin-right: 0px;
    }
    .social_share .links {
        justify-content: flex-start;
    }
    .topics_name .card {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    .topics_name .card:nth-child(4n) {
        margin-right: 2%;
    }
    .topics_name .card:nth-child(3n) {
        margin-right: 0;
    }
    .food_card_list_grid .card_items .title p {
        line-height: 17px;
    }
    .food_card_list_grid.grid.ingredients .card .card_items {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 20px;
    }
    .food_card_list_grid.grid.ingredients .card .card_items:nth-child(4n) {
        margin-right: 2%;
    }
    .food_card_list_grid.grid.ingredients .card .card_items:nth-child(3n) {
        margin-right: 0%;
    }
    .accordion .acc-items {
        margin-bottom: 20px;
    }
	.filter_list { padding: 0; }
}

@media only screen and (max-width:767px) {
    .food_card {
        width: 49%;
        margin-right: 2%;
    }
	.filtertitle { clear: both; font-size: 22px; position: relative; display: block;
    margin: 0 auto;
    width: 156px; }
	.filter_list { display: none; padding-top: 25px; }
	.filter_list.active { display: flex; }
	
	  
.arrow-bottom{
  display: block;
  margin: 0px auto;
  width: 20px;
  height: 20px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-135deg);
	    position: absolute;
    right: 0;
    top: -5px;
}
	.filtertitle.active .arrow-bottom {
	transform: rotate(-314deg);
    top: 8px;
	}


    .food_card:nth-child(3n) {
        margin-right: 2%;
    }
    .food_card:nth-child(2n) {
        margin-right: 0%;
    }
    .food_overview_cards .card {
        width: 49%;
    }
    .food_overview_cards .card:nth-child(3n) {
        margin-right: 2%;
    }
    .food_overview_cards .card:nth-child(2n) {
        margin-right: 0;
    }
    .food_card_list_grid .card {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 25px;
    }
    .food_card_list_grid:not(.grid) .card:nth-child(3n) {
        margin-right: 0%;
    }
    .food_card_list_grid.grid .card .card_items {
        width: 49%;
        margin-right: 2%;
    }
    .food_card_list_grid.grid:not(.ingredients) .card .card_items:nth-child(3n) {
        margin-right: 2%;
    }
    .food_card_list_grid.grid:not(.ingredients) .card .card_items:nth-child(2n) {
        margin-right: 0%;
    }
    .breadcrumbs span[typeof="ListItem"] {
        margin-right: 5px;
        margin-left: 5px;
    }
    .breadcrumbs a,
    .breadcrumbs span {
        font-size: 12px;
    }
    .topics_name .card {
        width: 49%;
        margin-right: 2%;
    }
    .topics_name .card:nth-child(3n) {
        margin-right: 2%;
    }
    .topics_name .card:nth-child(2n) {
        margin-right: 0;
    }
    .store .bottom_sec,
    .store .top_sec {
        padding: 20px;
    }
    .store .left_icon {
        width: 160px;
    }
    .store .right_part {
        width: calc(100% - 160px);
    }
    .store .top_sec h3 {
        margin-bottom: 15px;
        width: 100%;
        padding-right: 0;
    }
    .store .top_sec h3 strong {
        display: block;
        margin-top: 5px;
    }
    .store .top_sec .link_website {
        width: 100%;
        text-align: left;
    }
    .store {
        padding-bottom: 30px;
    }
    .store .card {
        margin-bottom: 20px;
    }
    .food_categories.recipes h1 {
        width: 100%;
        float: left;
    }
    .food_categories.recipes .search {
        width: 100%;
        float: left;
        margin-top: 20px;
    }
    .menu_card_list .card {
        width: 100%;
        padding-right: 0;
    }
    .food_card_list_grid.grid.ingredients .card .card_items {
        width: 49%;
    }
    .food_card_list_grid.grid.ingredients .card .card_items:nth-child(3n) {
        margin-right: 2%;
    }
    .food_card_list_grid.grid.ingredients .card .card_items:nth-child(2n) {
        margin-right: 0%;
    }
    .slider_nav {
        margin-bottom: 25px;
    }
    .menu_card_list .inner_part {
        padding: 30px 20px;
    }
    .food_making_process li small {
        width: 100%;
        padding-left: 0;
    }
    .food_making_process li strong {
        width: 100%;
    }
    .food_making_process li {
        margin-bottom: 15px
    }
    .recipe_details .slick-arrow {
        width: 33px;
        height: 33px;
        background-size: 33px !important;
    }
    .recipe_details .slick-arrow.slick-next {
        right: 15px;
    }
    .recipe_details .slick-arrow.slick-prev {
        left: 15px;
    }
    .banner h1 {
        font-size: 50px;
    }
    .banner .banner_text {
        padding: 0 40px;
    }
    .banner_slider .slick-arrow.slick-prev {
        left: 20px;
    }
    .banner_slider .slick-arrow.slick-next {
        right: 20px;
    }
    .banner_slider .slick-arrow {
        width: 33px;
        height: 33px;
        background-size: 8px !important;
    }
}

@media only screen and (max-width:600px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 23px;
    }
    .food_card {
        width: 100%;
        margin-right: 0;
    }
    .food_card:nth-child(3n) {
        margin-right: 0%;
    }
    .wrapper {
        padding: 0 20px;
    }
    .header.sticky,
    .header,
    .header {
        padding: 20px 0;
    }
    .header .logo ,.footer .logo{
        width: 72px;
    }
    .main-content {
        margin-top: 102px;
    }
    .banner {
        padding: 70px 0;
        min-height: 480px;
    }
    .banner h1 {
        font-size: 40px;
        line-height: 40px;
    }
    .banner .banner_text {
        padding: 0;
    }
    .banner h3 {
        font-size: 16px;
    }
    .banner_text::before {
        width: 100%;
        height: 100%;
        border-radius: unset;
    }
    .banner_slider .slick-arrow {
        transition: unset;
        top: unset;
        bottom: 46px;
    }
    .scroll_down {
        width: 35px;
        height: 35px;
        background-size: 35px;
        bottom: 20px;
    }
    .stay_connected .field {
        width: 100%;
        margin-bottom: 20px;
    }
    .banner .button_box {
        margin-top: 25px;
    }
    .title_box {
        margin-bottom: 30px;
    }
    .social_icon,
    .footer .inner_part {
        justify-content: flex-start;
    }
    .footer .footer_menu {
        justify-content: flex-start;
    }
    .footer .footer_menu ul li {
        margin-bottom: 12px;
        display: block;
        width: 100%;
    }
    .food_overview_cards .card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    .food_overview_cards .card .icon {
        font-size: 18px;
    }
    .food_card_list_grid.grid:not(.ingredients) .card .card_items:nth-child(4n) {
        margin-right: 0%;
    }
    .food_card_list_grid.grid .card .card_items {
        margin-bottom: 16px;
    }
    .text_editors figure {
        float: unset;
        margin-right: 0;
        text-align: center;
    }
    .text_editors img {
        margin: 0 auto 10px;
    }
    .text_editors blockquote {
        padding: 20px;
    }
    .topics_name .card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .food_overview_cards .card:nth-child(3n),
    .topics_name .card:nth-child(3n) {
        margin-right: 0%;
    }
    .store .left_icon {
        width: 100%;
        padding: 32px 20px;
    }
    .store .right_part {
        width: 100%;
    }
    .food_card_list_grid.grid .card_items .title {
        width: 100%;
        padding-left: 0;
    }
    .food_card_list_grid.grid .card_items .img {
        margin-bottom: 4px;
    }
    .food_card_list_grid .card_items .title p {
        line-height: 18px;
    }
    .filter_list .tag,
    .filter_list .tag label {
        width: 100%;
    }
    .filter_list .tag label {
        margin: 0;
    }
    .filter_list .checkbox {
        position: static;
        width: 100%;
        margin-top: 10px;
    }
    .accordion .acc-content li strong {
        width: 100%;
    }
    .accordion .acc-content li small {
        width: 100%;
        padding-left: 0;
    }
    .accordion .acc-title {
        padding: 20px;
    }
    .accordion .acc-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .accordion .acc-title h2 {
        font-size: 20px;
    }
    .mobile_menu {
        padding: 110px 24px 20px;
    }
    .banner_slider .slick-arrow.slick-next {
        right: unset;
        left: 70px;
    }
    .single_img_slider {
        margin-bottom: 15px;
    }
    .banner_slider .slick-arrow {
        top: unset;
        bottom: 15px;
    }
    .banner {
        padding-bottom: 100px;
    }
}

#loader {
    width: 40px;
    padding: 7px 0px;
}

.loader {
    width: 28px;
    height: 28px;
    border: 5px solid #368888;
    border-bottom-color: #927ECF;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}