*{
    box-sizing: border-box;
} 
body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}
h1{
    font-size: 50px;
    font-weight: bold;
    text-transform: capitalize;
}
h2{
    font-size: 40px;
    font-weight: bold;
}
p{
    line-height: 150%;
    text-decoration: none;
    line-break: normal;
    font-size: large;
}
.orange-color{
    color: rgb(255, 136, 0);
}
/* section banner below */
.flexible-containter{
    display: flex;
}
.top-banner{
    background-image: url(images/57.jpg);
    background-repeat: no-repeat;
}
.nav{
    display: flex;
    padding: 2% 5%;
    justify-content: space-between;
    align-items: center;
    
}
.nav img{
    width: 55px;
    height: 60px;
}
.nav-bar{
    flex: 1;
    text-align: right;
}
.nav-bar:hover{
    background-color: rgb(30, 191, 255);
    border-radius: 15px solid;
}
.nav-bar ul li{
    list-style: none;
    display: inline-block;
   padding: 8px 10px;
    position: relative;
}

.nav-bar ul li a{
    color: black;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    padding: 10px;



}
.nav-bar ul li a:hover{
    color: white;
    background-color: dimgrey;

}
/* order section css here below */
.half-container{
    width: 40%;
    padding-left: 2%;
    margin-left: 5%;
    
}
/* link button css */
.btn{
    text-decoration: none;
    padding: 15px 30px;
    background-image: linear-gradient(orange,tomato);
    color: white;
    cursor: pointer; 
    font-weight: 700;
    border-radius: 20px;
    border: none;
    text-transform: uppercase;
}
/* image with border */
.border{
    width: 80%;
    display: flex;
    border: double 6px transparent;
    border-radius: 50% 50% 0 50%;
    background-image: linear-gradient(#fff,#fff ), radial-gradient(circle at top left, orange,tomato);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.border img{
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 0 50% ;
}
/* about section css here */
.border-1{
    width: 80%;
    display: flex;
    border: double 6px transparent;
    border-radius: 50% 50% 50% 0;
    background-image: linear-gradient(#fff,#fff ), radial-gradient(circle at top left, #ef1eef,tomato);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.border-1 img{
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 0;
}
/* background image */
.about{
    background-image: url(images/56.jpg);
    background-repeat: no-repeat;
    background-position: right;
}
#h1-tag{
    margin-top: 2%;
    
}
/* recipe section css below  */
.recipe{
    text-align: center;
    padding-left: 2%;
    margin-left: 5%;
    margin-bottom: 5%;
    margin-top: 5%;
   
}

.recipe-item{
    width: 30%;
    margin: 5%;
    padding: 25px;
    box-shadow: 10px 10px 40px;
    border-radius: 20px;
    padding-left: 30px;
    background-color: rgb(231, 231, 231);
}
.recipe-item img{
    width: 100%;
    border-radius: 20px;
}
/* .......Reviews and Ratings......  */
.customers{
    text-align: center;
    padding-left: 2%;
    margin-left: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
    width: 80%;
}
.review-col{
    display: flex;
    width: 40%;
    margin-left: 5%;
    margin-right: 5%;
    border-radius: 15px;
    background-color: rgb(231, 231, 231);
    box-shadow: 10px 10px 40px;
    text-align: left;
    padding: 5%;
    flex-basis: 44%;
    cursor: pointer;

}
.review-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.review-col p{
    padding: 0;
}
.review-col h3{
    margin-top: 15px;
    text-align: left;
}
/* subscription part  */
.subscription ul{
    display: flex;
    margin:5%;
    padding: 2% 5%;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(231, 231, 231);
    box-shadow: 10px 10px 40px;
    border-radius: 20px;
}
.subscription ul li{
    text-decoration: none;
    list-style: none;
    
}

/* footer past css below */
.footer{
    margin-top: 5%;
    text-align: center;
    color: white;
    background-color: rgb(12, 9, 9);
}
.review-col .fas{
    color: #f44336;
}