/*
	Default css
*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Work+Sans&display=swap');

html{
	font-size: 100%;
	overflow-x: hidden;
}
*{
	margin: 0;
	padding: 0;
	outline: none;
}
a{
	text-decoration: none;
	color: inherit;
}
a:hover,
a:focus{
	color: inherit;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	margin: 0;
	padding: 0;
	color: #29282f;
	font-family: 'Playfair Display', serif;
}
h1,h2,h3,h4{
	font-weight: bold;
}
h1{
	font-size: 50px;
}
h2{
	font-size: 42px;
	line-height: 60px;
}
h3{
	font-size: 32px;
}
h4{
	font-size: 22px;
}
h5{
	font-size: 18px;
}
h6{
	font-size: 15px;
}
p{
	margin: 0;
	padding: 0;
}
ul{
	margin: 0;
}
li{
	list-style: none;
}
input,
select,
textarea{
	border: none;
	outline: none;
}
button{
	border: none;
	cursor: pointer;
}
button,
button:hover,
button:focus{
	outline: none;
}
body{
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	line-height: 26px;
	color: #6a6b71;
	overflow-x: hidden;
}
@media (min-width: 1200px){
	.container{
		max-width: 1200px;
	}
}
.white_overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.50);
}
.light_bg{
	background: #FAF3F1;
}
.modal .modal-content .product-calculate{
	padding: 20px;
}
/*
	Header area css
*/
.main-header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 337;
}
.sticky.main-header{
	position: fixed;
	top: 0;
	left: 0;
	background: #000000;
}
.header_navigation{
	padding: 20px 0;
}
.brand .logo{
	font-size: 32px;
	color: #fff;
}
/*menu css*/
.main-menu{
	float: right;
	display: flex;
}
.main-menu ul li{
	position: relative;
	display: inline-block;
	margin-left: 15px;
	margin-right: 15px;
}
.main-menu ul > li > a{
	display: block;
	padding: 40px 0;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}
.main-menu ul li:hover > a{
	color: #FF6400;
}
.main-menu ul li.menu-item-has-children > a:after{
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-weight: 600;
	margin-left: 10px;
}
.main-menu ul li > ul.sub-menu{
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	-webkit-transform: scale(1,0);
	-ms-transform: scale(1,0);
	transform: scale(1,0);
	-webkit-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	width: 250px;
	text-align: left;
	padding:0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.main-menu ul li:hover > ul.sub-menu{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	top: 100%;
	visibility: visible;
	opacity: 1;
}
.main-menu ul li > ul.sub-menu li{
	display: block;
	margin: 0;
	padding: 15px 0;
	border-bottom: 1px solid #e1e1e1;
	background: #fff;
	transition: all .3s;
}
.main-menu ul li > ul.sub-menu li:last-child{
	border: none;
}
.main-menu ul li > ul.sub-menu li > a {
    display: block;
    padding: 0 25px;
    color: #121212;
    font-size: 14px;
    text-transform: capitalize;
    transition: all .3s;
}
.main-menu ul li > ul.sub-menu li:hover > a:after{
	display: none;
}
.main-menu ul li > ul.sub-menu li:hover{
	background: #FF6400;
}
.main-menu ul li > ul.sub-menu li:hover > a{
	color: #fff;
	padding-left: 40px;
	background: transparent;
}
.main-menu ul li ul.sub-menu li > ul.sub-menu{
	top: 0;
	left: 100%;
	opacity: 0;
	visibility: hidden;
}
.main-menu ul li ul.sub-menu li:hover > ul.sub-menu{
	visibility: visible;
	opacity: 1;
}
/*
	End Header area css
*/

/*
	Start Banner section css
*/
.banner_bg {
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 180px 0;
}
/*
	End Banner section css
*/
.section_1{
	background: #FF6400;
}
.section_1 .section_img_box .img_box img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.section_1 .section_content_box h3{
	margin-bottom: 20px;
	color: #000;
}
.section_1 .section_content_box p{
	color: #000;
	margin-bottom: 30px;
}
/*
	Section css
*/
.section_2 .video_wrapper{
	margin-bottom: 60px;
}
.section_2 .video_wrapper .img_box{
	position: relative;
}
.section_1 .video_wrapper .img_box img{
	width: 100%;
}
.section_3 .main_content_box{
	padding: 20px 30px;
	background: #F7F7F7;
	margin-bottom: 40px;
}
.section_3 .main_content_box .main_text h2{
	margin-bottom: 20px;
}
.section_3 .main_content_box .main_text p{
	margin-bottom: 20px;
}
.main_list .single_list{
	display: flex;
	align-items: center;
}
.main_list .single_list .icon i{
	width: 40px;
	height: 40px;
	background: #fff;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #FF6400;
}
.main_list .single_list .text{
	margin-left: 15px;
}
.main_list .single_list .text h5{
	font-size: 16px;
}
.main_recipe_wrapper .recipe_box {
    border: 1px solid #e1e1e1;
    padding: 20px;
    margin-bottom: 20px;
}
.recipe_discription ul{
	padding-left: 20px;
	margin-bottom: 20px;
}
.recipe_discription ul li{
	list-style: decimal;
	margin-bottom: 10px;
	font-size: 14px;
}
.main_recipe_wrapper .recipe_box h4{
	margin-bottom: 20px;
}
.main_recipe_wrapper .recipe_box p.para1{
	margin-bottom: 20px;
}
.main_recipe_wrapper .recipe_box h5{
	margin-bottom: 15px;
	line-height: 28px;
}
.video_box{
	position: relative;
}
.video_box .img_box{
	position: relative;
}
.play_button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.menu_box_area .box_list{
	margin-bottom: 50px;
	text-align: center;
}
.menu_box_area .box_list a{
	position: relative;
	display: block;
	padding: 20px 30px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	z-index: 1;
	color: #fff;
}
.menu_box_area .box_list a:after{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.40);
	z-index: -1;
}
.calculetor_box {
    background-color: #FF6400;
    padding: 30px;
    min-height: 234px;
    max-height: 234px;
    height: 100%;
    margin-bottom: 40px;
}
.calculetor_box .title{
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #333;
}
.calculetor_box .form_group label{
	display: inline-block;
	color: #000;
	font-weight: 600;
}
.calculetor_box .form_group input{
	background: transparent;
	width: 100%;
	height: 40px;
	padding: 15px;
	border: 1px solid #333;
	margin-bottom: 10px;
}
.calculetor_box .form_button button{
	width: 100%;
	padding: 10px 40px;
	background: #000;
	color: #fff;
	border-radius: 10px;
}
.video_box_3{
	background: #FAF3F1;
	padding: 10px 10px 40px;
}
.video_box_3 .play_button a img{
	width: 70px;
	height: 70px;
}
.video_box_3 .text_box a{
	display: inline-block;
	padding: 20px 30px;
	background: #000;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
	margin-top: 25px;
	transition: all .3s;
}
.video_box_3 .text_box a:hover,
.video_box_3 .text_box a:focus{
	color: #000;
	background: #FF6400;
}
.video_box_3 .text_box h4{
	font-size: 16px;
	line-height: 26px;
}

.section_5 .section_title{
	margin-bottom: 40px;
}
.section_5 .section_content_box p{
	margin-bottom: 20px;
}
.section_5 .section_img_box .img_box{
	margin-bottom: 30px;
}

.section_6 .section_content_box h3{
	margin-bottom: 30px;
}
.section_6 .section_img_box .img_box img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.section_7 .eating_box .box_content{
	padding-top: 20px;
}
.section_7 .eating_box .box_content h3{
	font-size: 20px;
	margin-bottom: 20px;
}
.section_10{
	background: #FF6400;
}
.section_5 .section_content_box h3, 
.section_6 .section_content_box h3, 
.section_8 .section_content_box h3,
.section_9 .section_content_box h3,
.section_10 .section_content_box h3{
	color: #000;
	margin-bottom: 20px;
	font-size: 24px;
}
.section_5 .section_content_box p,
.section_6 .section_content_box p,
.section_8 .section_content_box p,
.section_9 .section_content_box p,
.section_10 .section_content_box p{
	color: #000000;
	margin-bottom: 20px;
}
.section_11{
	background: #FAF3F1;
}
.section-title{
	margin-bottom: 40px;
}
.section-title h3{
	line-height: 40px;
}
.product-box{
	text-align: center;
	margin-bottom: 40px;
}
.product-box .product{
	min-height: 100px;
	max-height: 100px;
	height: 100%;
	margin-bottom: 20px;
}
.product-box h4{
	font-size: 18px;
}
.pt-90{
	padding-top: 90px;
}
.pb-90{
	padding-bottom: 90px;
}
/*
	Section css
*/

/*
	Footer css
*/
.footer_top_wrapper{
	padding: 90px 0;
	background: #29292B;
}
.footer_top{
	margin-bottom: 60px;
}
.footer_top .footer_logo{
	margin-bottom: 30px;
	display: inline-block;
}
.footer_top ul.social li{
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}
.footer_top ul.social li a{
	color: #727684;
}
.footer_top ul.social li a:hover,
.footer_top ul.social li a:focus{
	color: #FF6400;
}
.footer_top p{
	color: #727684;
	padding: 0 80px;
	margin-bottom: 25px;
}
.footer_logo{
	font-size: 36px;
	color: #727684;
}
.footer_widget .widget-box h4{
	color: #DDDDDD;
	padding-bottom: 15px;
}
.footer_widget .widget-box h4:after{
	display: block;
	content: '';
	width: 70px;
	height: 1px;
	background: #D01E24;
	margin-top: 10px;
}
.footer_widget .widget-box p{
	margin-bottom: 30px;
}
.copyright_area{
	padding: 15px 0 10px;
	background: #343438;
}
.copyright_text p{
	color: #BBC6CD;
}
.payment_list ul li{
	display: inline-block;
	margin-left: 15px;
}
.payment_list ul li a{
	color: #fff;
	font-size: 18px;
}
.widget-link li:before{
	display: inline-block;
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	margin-right: 10px;
}
.widget-link li a{
	color: #687684;
}
.widget-link li:hover a{
	color: #FF6400;
}
.newletter-box form .form_group{
	position: relative;
}
.newletter-box form input{
	width: 100%;
	height: 40px;
	background: transparent;
	border: none;
	border-bottom: 2px solid #727684;
}
.send-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	background: #727684;
	padding: 5px 15px;
	color: #fff;
}
.send-btn i{
	margin-right: 10px;
}
/*
	Footer css
*/

/*
	Start scroll_up css
*/
#scroll_up {
  background: #1f2332;
  border-radius: 50%;
  bottom: 30px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  z-index: 337;
}
#scroll_up:hover,
#scroll_up:focus {
  background: #FF6400;
  color: #fff;
}
/*
	End scroll_up css
*/