* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
    --font-montserrat: "Montserrat", sans-serif;
    --font-titan-one: "Titan One", sans-serif;
    --green: #43B96B;
    --white: #ffffff;
    --black: #000000;
    --transition: all 300ms ease-in-out;
}

html {
	-ms-overflow-style: scrollbar;
	box-sizing: border-box;
	font-size: 100%;
}

*,
:after,
:before {
	box-sizing: inherit
}

body {
	font-family: var(--font-montserrat);
	color: var(--black);
	font-size: 15px;
	letter-spacing: 0;
	line-height: 19px;
}
.container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
a {
	color: var(--color-link);
	text-decoration: none;
	transition: .3s;
}

a:hover { color: var(--color-link-hover);}
p { margin-bottom: 20px; }
p a{text-decoration: underline;}
p a:hover{color: var(--mid-blue);text-decoration: underline;}
a:hover { text-decoration: none; }
a:focus { outline: none; text-decoration: none; }
img { display: block; }
input:focus, textarea:focus { outline: none; box-shadow: none !important; }
img { max-width: 100%; display: block; }
ul, li, ol { margin: 0; padding: 0; list-style: none; }
label { font-weight: inherit; }
input:focus, textarea:focus { outline: none; box-shadow: none; }
video, iframe { width: 100% }
h1,.h1 { font-size: 60px; line-height: normal;margin: 0 0 32px; color: var(--green); font-family: var(--font-titan-one); font-weight: 500;}
h2,.h2 { font-size: 60px; line-height: normal;margin: 0 0 15px; color: var(--green); font-family: var(--font-titan-one); font-weight: 500;}
h3,.h3 { font-size: 44px; line-height: normal;margin: 0 0 15px; color: var(--green); font-family: var(--font-titan-one); font-weight: 500;}
h4,.h4 { font-size: 35px; line-height: normal;margin: 0 0 15px; color: var(--green); font-family: var(--font-titan-one); font-weight: 500;}
h5,.h5 { font-size: 24px; line-height: normal;margin: 0 0 15px; color: var(--green); font-family: var(--font-titan-one); font-weight: 500;}
h6,.h6 { font-size: 18px; line-height: normal;margin: 0 0 15px; color: var(--green); font-family: var(--font-titan-one); font-weight: 500;}

h1 span, .h1 span{color: var(--light-blue);}

p { font-size: 15px; }
p:empty { display: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.switch-column {
    flex-direction: row-reverse;
}
.overflow-hidden {
    overflow: hidden;
}
a.btn,.wpcf7-submit{
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 16px 25px;
    transition: var(--transition);
    background: var(--green);
    font-size: 16px;
    letter-spacing: 1px;
    line-height: normal;
    font-weight: 700;;
    color: var(--white);
    display: inline-flex;
    text-transform: uppercase;
    text-decoration: none !important;   
}
a.btn:hover,.wpcf7-submit:hover{
    background: rgb(67 185 107 / 80%);
}
/*-------- Header Start -------------*/
header{
    background: var(--green);
    position: relative;
    z-index: 99;
    width: 100%;
}

.site-header.sticky {
    top: 0px;
    position: fixed;
    animation: goDown 0.8s ease-in-out forwards;
}

@keyframes goDown {
    0% {
        transform: translateY(-60px);
    }
    100% {
      transform: translateY(0px);
    }
  }

header .container{
    max-width: 100%;
    padding: 0px 80px;
}
.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0px;
}
.site-branding img {
    max-width: 120px;
    height: 50px;
    object-fit: contain;
}
.header-center{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.main-navigation ul{
    display: flex;
    list-style: none;
    justify-content: flex-end;
}
.main-navigation ul li a{
    font-size: 14px;
    line-height: normal;
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    width: max-content;
    padding: 4px 0px;
    border-bottom: 1px solid transparent;
}
.main-navigation ul li a:hover,.main-navigation ul li.current-menu-item a{
    border-bottom: 1px solid #fff;
}
.main-navigation ul li{
    margin-right: 25px;
    padding-left: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.menu-icon {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 99;
  }
  
.menu-icon .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

/* Top line */
.menu-icon .line:nth-child(1) {
    top: 6px;
}

/* Bottom line */
.menu-icon .line:nth-child(2) {
    top: 18px;
}

/* Active (close) state */
.menu-icon.active .line:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-icon.active .line:nth-child(2) {
    transform: rotate(-45deg);
    top: 10px;
}
.mobile-menu-icon{
    display: none;
}
.header-right .button-wrap{
    display: flex;
}
.header-right .button-wrap a.btn{
    background: var(--white);
    color: var(--green);
    padding: 14px;
    width: max-content;
    font-size: 14px;
}
.header-right .button-wrap a.btn:hover {
    background: rgb(255 255 255 / 90%);
}
.header-right .button-wrap a + a{
    margin-left: 12px;
}
.header-center .button-wrap{
    display: none;
}
/*-------- Header End -------------*/

/*-------- Footer Start -------------*/
.site-footer{
    background: var(--green);
    padding: 50px 0px;
}
.site-footer *{
    color: var(--white);
}
.socail-media{
    display: flex;
}
.socail-media a img{
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: var(--transition);
}
.socail-media a img:hover{
    filter: invert(1);
}
.socail-media a:not(:last-child){
    margin-right: 15px;
}
.footer-inner{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0px 15px;
}
.footer-left p{
    margin-bottom: 0px;
}
.footer-left p a:hover{
    color: var(--black);
}
/*-------- Footer End -------------*/

/*----- Gallery Start --------*/
.gallery{
    overflow: hidden;
}
.gallery-wrapper{
    display: flex;
    margin: 0px -5px -10px -5px;
}
.gallery-item{
    padding: 0px 5px;
}
.gallery-item a{
    height: 100%;
    cursor: zoom-in;
}
.gallery-item a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fancybox__footer{
    display: none !important;
}
.fancybox__toolbar__column button:not(:last-child){
    display: none !important;

}
.fancybox__toolbar__column button:last-child{
    background: transparent;
}
.fancybox__toolbar__column button:last-child svg{
    fill: #000;
    stroke: #000;
}
.fancybox__backdrop{
    background: rgb(255 255 255 / 90%);
}
.fancybox__toolbar__column {
    margin: 30px;
}
.f-button svg{
    fill: transparent;
    stroke: #000;
    stroke-width: 2px;
    filter: unset;
}
.fancybox__infobar{
    display: none;
}
.fancybox__nav button:hover{
    background-color: transparent !important;
}
.is-horizontal .fancybox__nav .f-button.is-next {
    right: 30px !important;
}
.is-horizontal .fancybox__nav .f-button.is-prev {
    left: 30px !important;
}
.f-button:hover:not([disabled]){
    background-color: transparent;
}
.fancybox__slide{
    padding: 100px;
}
/*----- Gallery End --------*/

/*---- Services Start ------*/
.services{
    padding: 120px 0px;
}
.services .title{
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding-bottom: 40px;
}
.services-col{
    width: 33.33%;
    padding: 0px 15px;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}
.services-col .image{
    position: relative;
    height: 450px;
}
.services-col .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.services-col .text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.services-col .text p{
    font-size: 20px;
    color: var(--white);
    width: 60%;
    margin: 0 auto;
    line-height: normal;
}

.services .bottom-text {
    text-align: center;
    width: 100%;
}
.services .bottom-text p{
    font-size: 20px;
    line-height: normal;
    text-transform: uppercase;
}
.services .bottom-text a.btn{
    padding: 26px 25px;
    max-width: 340px;
    width: 100%;
    justify-content: center;
}
/*---- Services End ------*/

/*---- CTA Banner Start ------*/
.cta-banner {
    position: relative;
    margin-bottom: 70px;
    overflow: hidden;
}

.cta-banner-text {
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 150px 0px;
}

.cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
  
.cta-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}
.cta-banner-text *{
    color: var(--white);
}
.cta-banner-text .text-wrapper{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.cta-banner-text .text-wrapper p{
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.cta-banner-text .text-wrapper a.btn{
    background: var(--white);
    color: var(--green);
    margin-top: 60px;
}
.cta-banner-text .text-wrapper a.btn:hover{
    background: rgb(255 255 255 / 80%);
}
.cta-banner-text .highlight-text {
    position: relative;
    display: inline-block;
}
.cta-banner-text .highlight-text::before{
    content: '';
    position: absolute;
    width: 126%;
    height: 146%;
    top: 60%;
    left: 50%;
    background: url(../images/video-header-circle.png);
    background-size: 100% 100%;
    z-index: 1;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
}
/*---- CTA Banner End ------*/

/*---- Cooking Text Start ------*/
.cooking-text{
    padding: 70px 0px 150px 0px;
}
.cooking-text-wrap{
    max-width: 730px;
    margin: 0 auto;
    text-align: center;
}
.cooking-text-wrap h3{
    color: var(--black);
    margin-bottom: 35px;
}
.cooking-text-wrap a.btn{
    margin-top: 30px;
}
.cooking-text-wrap .highlight-text {
   position: relative;
}
.cooking-text-wrap .highlight-text::before{
    content: '';
    position: absolute;
    width: 110%;
    height: 150%;
    top: 61%;
    left: 45%;
    background: url(../images/news-circle.png);
    background-size: 100% 100%;
    z-index: 1;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
}

.news-popup {
    -webkit-overflow-scrolling: touch;
    bottom: 0;
    left: 0;
    opacity: 0;
    outline: 0;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .3s ease-out;
    z-index: -1;
    pointer-events: none;
}

.news-popup .popup-model-inner {
    margin: 0 auto;
    max-width: 710px !important;
    padding: 0 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-out;
    width: 100%;
    opacity: 0;
    position: relative;
}

.news-popup.model-open {
    display: block;
    pointer-events: all;
}

.model-open {
    opacity: 1;
    overflow: hidden;
    z-index: 9999;
}

.news-popup .popup-model-wrap {
    background-color: #85dca3;
    box-sizing: border-box;
    display: block;
    outline: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding:40px;
    position: relative;
    width: 100%;
    max-height: calc(100vh - 100px);
    min-height: 100px;
}

.bg-overlay {
    pointer-events: none;
    opacity: 0;
    background: rgb(0 0 0 / 40%);
    bottom: 0;
    height: 100vh;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .3s ease-out;
    width: 100%;
    z-index: 0;
}

.model-open .bg-overlay {
    z-index: 99;
    opacity: 1;
    pointer-events: all;
}

.model-open .popup-model-inner {
    position: relative;
    z-index: 999;
    opacity: 1;
    pointer-events: all;
}

.news-popup .close-btn {
    cursor: pointer;
    height: 34px;
    width: 34px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 99;
    background-color: var(--primary-green);
    border-radius: 50%;
    background-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-out;
}

.news-popup .close-btn img {
    height: 24px;
    width: 24px;
}

.news-popup .close-btn:hover {
    background: var(--primary-blue);
}

.popup-v1-model .close-btn {
    height: 10px;
    width: 10px;
    right: 12px;
    top: 14px;
}
.news-popup-content h4{
    color: var(--black);
    margin-bottom: 50px;
    font-size: 35px;
}
.wpcf7-submit{
    border: 0px;
}

.wpcf7-form-control-wrap input{
    background: #e7f8ec;
    border-bottom: 1px solid #000 !important;
    border: 0px;
    width: 100%;
    padding: 8px;
    margin-top: 10px;
}
.news-popup-content .form-btn{
    display: flex;
    justify-content: center;
    margin-left: 80px;
}
.wpcf7-spinner{
    top: 8px;
}
.news-popup-content .form-btn p{
    margin-bottom: 0px;
}
.popup-open{
    overflow: hidden;
}
.wpcf7 form .wpcf7-response-output{
    padding: 10px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--green) !important;
    color: var(--black);
    font-weight: 500;
}

/*---- Cooking Text End ------*/

/*---- Testimonials Slider Start ------*/
.testimonails-slider{
    overflow: hidden;
    position: relative;
    padding: 125px 0px 150px 0px;
}
.testimonails-bg{
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    bottom: 0px;
}
.testimonails-bg img{
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    padding: 0px 80px
}
.testimonails-slider .title{
    text-align: center;
    margin-bottom: 40px;
}
.testimonial-box{
    background: var(--green);
    padding: 55px 15px;
    margin: 0px 10px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-box *{
    color: var(--white);
}
.testimonial-box p{
    margin-bottom: 0px;
}

.testimonails-slider-wrap .slick-list {
    padding: 0 20%;
    overflow: hidden;
}

.testimonails-slider-wrap .slick-track {
    display: flex !important;
}

.testimonails-slider-wrap .slick-slide {
    height: inherit !important;
    margin: 0px 0px 50px 0px;
}
.slick-next {
    background-image: url(../images/next-arrow.svg);
    right: 0px;
}

.slick-prev.hidden,.slick-next.hidden {
    opacity: 0;
    pointer-events: none;
}

.slick-next,.slick-prev {
    background-color: #7cce97;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 100%;
    bottom: 0;
    cursor: pointer;
    pointer-events: all;
    display: block;
    font-size: 0;
    width: 60px;
    height: 60px;
    padding: 30px;
    outline: none;
    transition: .3s;
    border: 0px;
    z-index: 1;
    background-size: 50%;
}

.slick-next:hover,.slick-prev:hover {
    background-color: var(--green);
}

.slick-prev {
    background-image: url(../images/prev-arrow.svg);
}

.slider-buttons {
    display: flex;
    justify-content: center;
}

.slider-buttons > *:not(:last-child) {
    margin-right: 20px;
}
/*---- Testimonials Slider Start ------*/


/*------- Home Video header Start --------*/
.home-video-header{
    position: relative;
    overflow: hidden;
    height: 95vh;
}
.home-video-header .home-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh + 100px);
    overflow: hidden;
    z-index: -1;
    margin-top: -100px;
}
.home-video-header .home-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-text{
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 150px 0px;
    height: 100% ;
    display: flex
;
    align-items: center;
}
.home-text *{
    color: var(--white);
}
.home-text p{
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.home-text-wrap{
    text-align: center;
    max-width: 38%;
    margin: 0 auto;
}

.home-text-wrap .highlight-text {
    position: relative;
 }
.home-text-wrap .highlight-text::before{
    content: '';
    position: absolute;
    width: 120%;
    height: 130%;
    top: 60%;
    left: 45%;
    background: url(../images/video-header-circle.png);
    background-size: 100% 100%;
    z-index: 1;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
}
.home-text-wrap h2{
    margin-bottom: 30px;
}
/*------- Home Video header End --------*/
.menu-recipe{
    overflow: hidden;
}
.menu-recipe .title{
    text-align: center;
    padding-bottom: 90px;
}
.menu-recipe-row {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
}
.menu-recipe-item{
    padding: 0px 50px;
}
.menu-recipe-item h2 {
    color: var(--black);
}
.menu-recipe-row {
    overflow: hidden;
    position: relative;
}

.marquee-ani-left {
    display: flex;
    width: max-content;
    animation: marquee-left 20s linear infinite;
}

.menu-recipe-item {
    padding: 0 50px;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.menu-recipe-row:hover .marquee-ani-left {
    animation-play-state: paused;
}
.menu-recipe-main:first-child{
    border-top: 1px solid #000;
}
.menu-recipe-main{
    border-bottom: 1px solid #000;
    padding: 50px 0px;
}

.marquee-ani-right{
    display: flex;
    width: max-content;
    animation: marquee-right 20s linear infinite;
}
  
@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.menu-recipe-main{
    position: relative;
}
.menu-recipe-item-image{
    position: absolute;
    z-index: 1;
    width: 225px;
    height: 225px;
    top: -50%;
}
.menu-recipe-item-image img{
    width: 100%;
    height: 100%;
}
.menu-recipe-item-image .text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.menu-recipe-item-image .text h5{
    color: var(--white);
}
.menu-recipe-item-image.image-1{
    left: 15%;
}
.menu-recipe-item-image.image-2{
    right: 15%;
    top: -13%;
}
.menu-recipe-item-image.image-3{
    left: 30%;
    top: 50%;
}
.menu-bottom-wrap{
    text-align: right;
}
.menu-bottom-text {
    text-align: left;
    flex-direction: column;
    justify-content: flex-end;
    width: 20%;
    margin-left: auto;
    margin-right: 150px;
}
.menu-bottom-text p{
    font-size: 20px;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.menu-bottom-text a.btn{
    padding: 26px 25px;
    max-width: 280px;
    width: 100%;
    justify-content: center;

}
.menu-bottom-wrap{
    margin-top: 60px;
}

/*-------- 404 Start -------*/
.error-404{
    padding: 290px 0px;
    background: rgb(67 185 107 / 5%);
}
.error-wrapper{
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}
.error-wrapper h1{
    font-size: 80px;
}
.error-wrapper p{
    font-size: 18px;
    line-height: normal;
    margin-bottom: 25px;
}
/*-------- 404 End -------*/

.empty-section{
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.empty-wrapper{
    width: 100%;
}
.empty-wrapper h6{
    font-size: 17px;
    color: var(--black);
    font-family: var(--font-montserrat);
    font-weight: 600;
}
.empty-wrapper p{
    font-weight: 500;
    color: #767676;
}

.contact-deatils{
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.contact-text h6{
    color: var(--black);
    font-family: var(--font-montserrat);
}
.contact-text h6 a,.contact-text p a{
    color: var(--green);
    text-decoration: underline;
}
.contact-text h6 a:hover,
.contact-text p a:hover{
    color: var(--black);
}
.contact-text p{
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
}
.page-template-page-empty,.page-id-18,.page-id-16{
    overflow: hidden;
}
.our-story-text{
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
/*---------- Responsive Design ----------*/

/*Small Desktop*/
@media only screen and (max-width:1200px) {
    header .container{
        padding: 0px 15px;
    }
    h1,.h1 { font-size: 50px; line-height: normal;margin: 0 0 32px;}
    h2,.h2 { font-size: 50px; line-height: normal;margin: 0 0 15px;}
    h3,.h3 { font-size: 35px; line-height: normal;margin: 0 0 15px;}
    h4,.h4 { font-size: 30px; line-height: normal;margin: 0 0 15px;}
    h5,.h5 { font-size: 20px; line-height: normal;margin: 0 0 15px;}
    h6,.h6 { font-size: 18px; line-height: normal;margin: 0 0 15px;}

    .services-col .image{
        height: 370px;
    }
    .cooking-text {
        padding: 50px 0px 100px 0px;
    }
    .menu-bottom-text{
        width: 30%;
        margin-right: 0px;
    }
    .testimonails-slider{
        padding: 120px 0px 100px 0px;
    }
    .menu-recipe-item-image.image-1 {
        left: 5%;
    }
}

/*Tablet*/
@media (max-width: 991px) {
    h1,.h1 { font-size: 45px; line-height: normal;margin: 0 0 32px;}
    h2,.h2 { font-size: 45px; line-height: normal;margin: 0 0 15px;}
    /*-------- Header Start -------------*/
    .mobile-menu-icon{
        display: block;
        width: 5%;
    }
    .header-left{
        width: 95%;
    }
    .header-left a img{
        margin: 0 auto;
    }

    .header-center {
        bottom: 0;
        display: flex;
        flex-direction: column;
        right: 0px;
        opacity: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0;
        position: fixed;
        top: 0px;
        transition: all .5s;
        visibility: hidden;
        z-index: 9;
        width: 100%;
        background: #fff;
        height: 100vh;
        padding-bottom: 80px;
        width: 100%;
        align-items: flex-start;
        padding: 0px 15px;
    }
    .menu-open .header-center {
        opacity: 1;
        visibility: visible;
    }
    .menu-open  .menu-icon .line{
        background-color: var(--black);
    }
    .main-navigation ul li a{
        color: var(--black);
        font-size: 45px;
        font-weight: 400;
    }
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
   
    }
    .menu-menu-1-container{
        display: none;
        opacity: 0;
    }
    .menu-open .menu-menu-1-container {
        display: block;
        animation: fadeUp 0.4s ease forwards;
    }
    @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
  
    .main-navigation ul li{
        margin-right: 0px;
        margin-bottom: 50px;
    }
    .main-navigation ul li:last-child{
        margin-bottom: 0px;
    }
    .main-navigation{
        width: 100%;
    }
    .header-right{
        display: none;
    }
    .header-center .button-wrap{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-top: 50px;
    }
    .header-center .button-wrap a{
        width: 300px;
        justify-content: center;
    }
    .header-center .button-wrap a + a{
        margin-top: 20px;
    }
    /*-------- Header End -------------*/

    /*----- Gallery Start --------*/
    .gallery-item{
        width: 50%;
    }

    .gallery-item{
        margin-bottom: 10px;
    }
    /*----- Gallery End --------*/

    .home-text-wrap{
        max-width: 80%;
    }

    .services {
        padding: 70px 0px;
    }
    .services-col .image {
        height: 100%;
    }
    .services-col {
        width: 50%;
    }
    .menu-recipe-item-image{
        width: 180px;
        height: 180px;
    }
    .menu-bottom-text {
        width: 40%;
    }
    .menu-recipe .title {
        padding-bottom: 110px;
    }
    .menu-recipe-item-image .text h5{
        font-size: 18px;
    }
    .cta-banner-text .text-wrapper{
        padding: 0px 15px;
    }

    .error-wrapper {
        max-width: 100%;
        padding: 0px 15px;
    }
    .error-wrapper h1 {
        font-size: 70px;
    }

    .page-template-page-empty,.page-id-18,.page-id-16{
        overflow: auto;
    }
    .empty-section,.contact-deatils {
        height: 100vh;

    }
}
/*Mobile Device*/
@media only screen and (max-width:767px) {

    h3, .h3 {
        font-size: 30px;
    }
    a.btn{
        font-size: 15px;
        padding: 13px 20px;
    }
    /*-------- Header Start -------------*/
    .header-inner{
        padding: 15px 0px;
    }
    .site-branding img {
        max-width: 100px;
    }
    .mobile-menu-icon{
        width: 10%;
        margin-top: 5px;
    }
    .header-left {
        width: 90%;
    }
    .menu-icon {
        width: 25px;
        height: 25px;
    }
    .menu-icon .line:nth-child(2) {
        top: 16px;
    }
    .main-navigation ul li a{
        font-size: 22px;
    }
    .main-navigation ul li{
        margin-bottom: 30px;
    }
    .header-center .button-wrap a {
        width: 100%;
    }
    .header-center .button-wrap{
        margin-top: 30px;
    }
    /*-------- Header End -------------*/

    /*-------- Footer Start -------------*/
    .footer-inner{
        flex-direction: column;
        align-items: center;
    }
    .footer-left{
        text-align: center;
        margin-bottom: 20px;
    }
    .site-footer {
        padding: 30px 0px;
    }
    /*-------- Footer End -------------*/


    /*----- Gallery Start --------*/
    .fancybox__slide {
        padding: 50px;
    }
    .fancybox__toolbar__column {
        margin: 10px;
    }
    .gallery-wrapper{
        flex-wrap: wrap;
    }
    .is-horizontal .fancybox__nav .f-button.is-next {
        right: 0px !important;
    }
    .is-horizontal .fancybox__nav .f-button.is-prev {
        left: 0px !important;
    }
    /*----- Gallery End --------*/

    .home-text-wrap {
        max-width: 100%;
        padding: 0px 15px;
    }
    .gallery-item:not(:first-child, :last-child) {
        width: 60%;
    }
    .gallery-item:first-child, .gallery-item:last-child {
        width: 40%;
    }

    .services {
        padding: 60px 0px;
    }
    .services .title{
        width: 100%;
        padding: 0px 10px;
    }
    .services-col{
        width: 100%;
        margin-bottom: 10px;
    }
    .services .bottom-text a.btn{
        max-width: max-content;
        padding: 13px 20px;
    }
    .services .bottom-text p {
        font-size: 19px;
    }

    .menu-recipe-item-image {
        width: 140px;
        height: 140px;
    }
    .menu-recipe-item-image.image-1 {
        top: -50%;
    }
    .menu-recipe-item-image.image-2 {
        right: 8%;
        top: -42%;
    }
    .menu-recipe-item-image.image-3 {
        left: 15%;
        top: 68%;
    }
    .menu-recipe-item-image .text h5 {
        font-size: 17px;
    }
    .menu-recipe-main{
        padding: 60px 0px;
    }
    .menu-bottom-wrap {
        margin-top: 120px;
    }
    .menu-bottom-text {
        width: 100%;
        text-align: center;
    }
    .menu-bottom-text a.btn {
        padding: 13px 20px;
        max-width: max-content;
    }
    .testimonails-slider {
        padding: 100px 0px 50px 0px;
    }
    .testimonails-slider-wrap .slick-slide{
        margin: 0px 0px 30px 0px;
    }
    .slick-next, .slick-prev{
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    .testimonial-box{
        margin: 0px 7px;
    }
    .testimonial-box{
        padding: 45px 15px;
    }
    .cooking-text-wrap h3{
        margin-bottom: 30px;
    }
    .cooking-text-wrap a.btn {
        margin-top: 10px;
    }
    .cooking-text {
        padding: 50px 0px 70px 0px;
    }
    .news-popup .popup-model-wrap{
        padding: 20px;
    }
    .error-wrapper h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }
    .error-wrapper p {
        font-size: 16px;
        line-height: 25px;
    }
    .error-404 {
        padding: 270px 0px;
    }

}

@media only screen and (max-width:575px) {
}

@media only screen and (max-width:360px) {

}

@media only screen and (max-width:320px) {

}