
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    list-style: none;
    text-decoration: none;
   
}
:root{
	--bg-color: #56001d;
	--text-color: #efb700;
	--min-color: #1cabab;
}

html {
    scroll-behavior: smooth;    
}

body{
    background-color: #f1f1f1;
    height: 100vh;
    width: 100%;
    place-items: center;
}

.navbar {
    position: fixed;
    top: 0;
    height: 90px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 99;  
}

.logo img{
    position: relative;
    width: 18%;
    height: 100%;
    padding: 3px;
    margin-left: 10px;
}

.navbar .sidebar{
    position: fixed;
    right: -250px;
    width: 250px;
    top: 0px;
    height: 100%;
    background-color: #2f2f2f;
    transition: all .5s ease;
    
}

.navbar .sidebar ul a{
    display: block;
    height: 100%;
    width: 100%;
    margin-top: 40px;
    line-height: 2px;
    font-size: 15px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    padding-left: 40px;
    box-sizing: border-box;
    transition: 0.3s;
}
.navbar .sidebar li:hover a{
    color: rgba(203, 240, 83, 0.815);
}

.navbar #check{
    display: none;
    right: 0;
}
.navbar label #btn, label #cancel{
    position: absolute;
    right: 0;
    cursor: pointer;
    
    border-radius: 3px;
}
.navbar label #btn{
    right: 20px;
    top: 25px;
    font-size: 30px;
    color: #2f2f2f;
    padding: 6px 12px;
    transition: all 0.5s;    
}
.navbar label #cancel{
    z-index: 1111;
    right: 50px;
    top: 27px;
    font-size: 30px;
    color: #fff;
    padding: 4px 9px;
    opacity: 0;
    transition: all 0.5s ease;
}
.navbar #check:checked ~ .sidebar{
    right: 0;
}
#check:checked ~ label #btn{
    right: 250px;
    opacity: 0;
    pointer-events: none;
}
#check:checked ~ label #cancel{
    right: 10px;
    opacity: 100;    
}
.navbar .sidebar h1{
    position: relative;
    padding: 10px 37px;
    margin-top: 10vh;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    color: #fff;
    
}
.navbar .sidebar p{
    position: relative;
    margin-left: 37px;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    color: #fff;
    line-height: 20px;
    
}
.navbar .sidebar i{
        position: relative;
        margin-left: 37px;
        margin-top: 12vh;
        font-size: 14px;
        color: #9a9a9a;
        transition: 0.5s ease;        
}

.navbar .sidebar i:hover{
    color: rgba(203, 240, 83, 0.815);
}




.our-work h2{
    position: relative;
    font-size: 30px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    color: gray;
    font-weight: lighter;
}
.our-work h2 span{
    font-family:  'Lato', sans-serif;
    color: #2f2f2f;
    font-weight: 1000;
}


.food_chart{
	width: 95.3%;
	display: flex;
	margin-left: 30px;
	align-items: center;
	justify-content: space-between;
}
.food_chart .food_bx{
	position: relative;
	width: 30%;
	height: 400px;
	background-color: #c9c9c9;
	padding: 60px 50px;
	z-index: 2;
}
.food_chart .food_bx:nth-child(2){
	width: 40%;
	background-color: #a0cf55;
}
.food_chart .food_bx:nth-child(3){
	background-color: #6b6b6b;
}
.food_chart .food_bx .cont {
	position: relative;
	z-index: -2;
}

.food_chart .food_bx .cont h1{
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-size: 50px;
	line-height: 50px;
	
}
.food_chart .food_bx .cont p{
	font-size: 11px;
	color: #fff;
	margin-top: 18px;
}
.food_chart .food_bx .cont button{
	background: #fff;
	border-radius: 10px;
	padding: 9px 15px;
	color: var(--bg-color);
	text-decoration: none;
	font-size: 13px;
	font-family: 'Lato', sans-serif;
	border: none;
	outline: none;
	cursor: pointer;
	margin-top: 20px;
	transition: 0.5s ease-in-out;
}


.food_chart .food_bx .cont button:hover{
	background: #6b8b38;
	color: #fff;
	
	
}


.food_chart .food_bx img{
	position: absolute;
	right: -50px;
	top: 10%;
	width: 280px;
	z-index: 0;
}
.food_chart2 .food_bx{
	position: relative;
	width: 50%;
	height: 280px;
	background: #6b6b6b;
	padding: 30px 50px;
	z-index: 2;
}
.food_chart2 .food_bx:nth-child(2){
	width: 30%;
	background: #c9c9c9;	
}
.food_chart2 .food_bx:nth-child(3){
	width: 20%;
	background: #a0cf55;	
}
.food_chart2 .food_bx:nth-child(1) img{
	width: 400px;
}
.food_chart2 .food_bx:nth-child(2) img{
	width: 170px;
}
.food_chart2 .food_bx:nth-child(3) h1{
	color: var(--bg-color);
	font-size: 43px;
	line-height: 45px;
}
.food_chart2 .food_bx:nth-child(3) button{
	border-radius: 50%;
	padding: 8px 11px;
	background: var(--text-color);
	transition: .3s linear;
}
.food_chart2 .food_bx:nth-child(3) button:hover{
	background: var(--bg-color);
	color: #efb700;
}


.navbar {
    position: fixed;
    top: 0;
    height: 90px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 99;  
}

.logo img{
    position: relative;
    width: 18%;
    height: 100%;
    padding: 3px;
    margin-left: 10px;
}

.navbar .sidebar{
    position: fixed;
    right: -250px;
    width: 250px;
    top: 0px;
    height: 100%;
    background-color: #2f2f2f;
    transition: all .5s ease;
    
}

.navbar .sidebar ul a{
    display: block;
    height: 100%;
    width: 100%;
    margin-top: 40px;
    line-height: 2px;
    font-size: 15px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    padding-left: 40px;
    box-sizing: border-box;
    transition: 0.3s;
}
.navbar .sidebar li:hover a{
    color: rgba(203, 240, 83, 0.815);
}

.navbar #check{
    display: none;
    right: 0;
}
.navbar label #btn, label #cancel{
    position: absolute;
    right: 0;
    cursor: pointer;
    
    border-radius: 3px;
}
.navbar label #btn{
    right: 20px;
    top: 25px;
    font-size: 30px;
    color: #2f2f2f;
    padding: 6px 12px;
    transition: all 0.5s;    
}
.navbar label #cancel{
    z-index: 1111;
    right: 50px;
    top: 27px;
    font-size: 30px;
    color: #fff;
    padding: 4px 9px;
    opacity: 0;
    transition: all 0.5s ease;
}
.navbar #check:checked ~ .sidebar{
    right: 0;
}
#check:checked ~ label #btn{
    right: 250px;
    opacity: 0;
    pointer-events: none;
}
#check:checked ~ label #cancel{
    right: 10px;
    opacity: 100;    
}
.navbar .sidebar h1{
    position: relative;
    padding: 10px 37px;
    margin-top: 10vh;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    color: #fff;
    
}
.navbar .sidebar p{
    position: relative;
    margin-left: 37px;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    color: #fff;
    line-height: 20px;
    
}
.navbar .sidebar i{
        position: relative;
        margin-left: 37px;
        margin-top: 12vh;
        font-size: 14px;
        color: #9a9a9a;
        transition: 0.5s ease;        
}

.navbar .sidebar i:hover{
    color: rgba(203, 240, 83, 0.815);
}


.our-work h2{
    position: relative;
    font-size: 30px;
    margin-top: 80px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    color: gray;
    font-weight: lighter;
}
.our-work h2 span{
    font-family:  'Lato', sans-serif;
    color: #2f2f2f;
    font-weight: 1000;
}



/*footer*/
.footerContainer{
    width: 100%;
    padding: 30px 10px 5px;
    background-color: #2f2f2f;
}
.socialIcon {
    display: flex;
    justify-content: center;
}
.socialIcon a{
    text-decoration: none;
    margin: 10px;
}
.socialIcon a i{
    color: #fff;
    font-size: 17px;
    transition: 0.3s ease-in-out;
}
.socialIcon a i:hover{
    color: rgba(203, 240, 83, 0.815);
    font-size: 17px;
}

.footerNav{
    margin: 10px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
}
.footerNav ul li a{
    text-decoration: none;
    margin: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-family: 'Lato', sans-serif;
    transition: 0.3s ease-in-out;
}
.footerNav ul li a:hover{
    color: rgba(203, 240, 83, 0.815);
}
.footerBottom{
    background-color: #000;
    padding: 10px;
    text-align: center;
}
.footerBottom p{
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
}
.footerBottom p span{
    color: rgba(203, 240, 83, 0.815);
    text-transform: uppercase;
    font-size: 0.7rem;
    font-family: 'Lato', sans-serif;
}

/*up arrow*/

.back-to-top{
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #717171;
    z-index: 99999;
}



