:root{
  --orange: #ff7800;
  --black: #130f40;
  --light-color: #666;
  --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
  --border: 2rem solid rgba(0, 0, 0, .1);
  --outline: .1rem solid rgba(0, 0, 0, .1);
  --outline-hover: .2rem solid var(--black);
}
*{
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
}
html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}  
body{
  background-color: #eee;
}
section{
  padding: 2rem 9%;
} 
.heading{
  text-align: center;
  font-size: 3.5rem;
  color: var(--black);
  cursor: pointer;
  padding-bottom: 2rem;
}
.heading span{
  background-color: var(--orange);
  color: #fff;
  display: inline-block;
  padding: .5rem 3rem;
  clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}
.headiing{
  text-align: center;
  font-size: 3.5rem;
  color: var(--black);
  padding-bottom: 1rem;
  cursor: pointer;
}
.headiing span{
  background-color: var(--orange);
  color: #fff;
  display: inline-block;
  padding: .5rem 3rem;
  clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}
.btn{
  margin-top: 1rem;
  display: inline-block;
  padding: .8rem 3rem;
  font-size: 1.7rem;
  border-radius: .5rem;
  border: .2rem solid var(--black);
  color: var(--black);
  cursor: pointer;
  background: none;
}
.btn:hover{
  background-color: var(--orange);
  color: #fff;
}
.header{
  position: fixed;
  top: 0; left: 0; 
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 2rem 9%;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  justify-content: space-between;
}
.header .logo{
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--black);
  text-decoration: none;
}
.header .logo i{
  color: var(--orange);
}
.header .navbar a{
  font-size: 1.7rem;
  margin: 0 1rem;
  color: var(--black);
  text-decoration: none;
}
.header .navbar a:hover{
  color: var(--orange);

}
.header .icons div{
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  border-radius: .5rem;
  background-color: #eee;
  color: var(--black);
  font-size: 2rem;
  margin-left: .3rem;
  text-align: center;
}
.header .icons div:hover{
  background-color: var(--orange);
  color: #fff;
}
#menu-btn{
  display: none;
}
.header .search-form{
  position: absolute;
  top: 110%; right: -110%;
  width: 50rem;
  height: 5rem;
  background-color: #fff;
  border-radius: .5rem;
  display: flex;
  overflow: hidden;
  align-items: center;
  box-shadow: var(--box-shadow);
}
.header .search-form.active{
  right: 2rem;
  transition: .4s linear;
}
.header .search-form input{
  height: 100%;
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.6rem;
  color: var(--black);
  padding: 0 1.5rem;
}
.header .search-form label{
  font-size: 2.2rem;
  padding-right: 1.5rem;
  color: var(--black);
  cursor: pointer;
}
.header .search-form label:hover{
  color: var(--orange);
}
.header .shopping-cart{
  position: absolute;
  top: 110%; right: -110%;
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: var(--box-shadow);
  width: 35rem;
  background-color: #fff;
}
.header .shopping-cart.active{
  right: 2rem;
  transition: .4s linear;
}
.header .shopping-cart .box{
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin: 1rem 0;
}
.header .shopping-cart .box img{
  height: 10rem;
}
.header .shopping-cart .box .fa-trash{
  font-size: 2rem;
  position: absolute;
  top: 50%; right: 2rem;
  cursor: pointer;
  color: var(--light-color);
  transform: translateY(-50%);
}
.header .shopping-cart .box .fa-trash:hover{
  color: var(--orange);
}
.header .shopping-cart .box .content h3{
  color: var(--black);
  font-size: 1.7rem;
  padding-bottom: 1rem;
}
.header .shopping-cart .box .content span{
  color: var(--black);
  font-size: 1.6rem;
}
.header .shopping-cart .box .content .quantity{
  padding-left: 1rem;
}
.header .shopping-cart .total{
  font-size: 2.5rem;
  padding: 1rem 0;
  text-align: center;
  color: var(--black);
}
.header .shopping-cart .btn{
  display: block;
  text-align: center;
  margin: 1rem;
}
.header .login-form{
  position: absolute;
  top: 110%; right: -110%;
  width: 30rem;
  box-shadow: var(--box-shadow);
  padding: 2rem;
  border-radius: .5rem;
  background: #fff;
  text-align: center;
}
.header .login-form.active{
  right: 2rem;
  transition: .4s linear;
}
.header .login-form h3{
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--black);
}
.header .login-form .box{
  width: 100%;
  margin: .7rem 0;
  background-color: #eee;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1.6rem;
  color: var(--black);
  text-transform: none;
}
.header .login-form p{
  font-size: 1.4rem;
  padding: .5rem 0;
  color: var(--light-color);
}
.header .login-form p a{
  color: var(--orange);
  text-decoration: underline;
}
.home{
  min-height: 50rem;
  display: flex;
  align-items: center;
  background: url(img/backgr.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.home .content{
 width: 60rem;
}

.home .content h3{
  color: var(--black);
  font-size: 5rem; 
  text-transform: uppercase;
}
.home .content h3 span{
  color: var(--orange);
  font-size: 5rem; 
  text-transform: uppercase;
}
.home .content p{
  font-size: 2rem;
  font-weight: lighter;
  line-height: 1.8;
  padding: 1rem 0;
  color: var(--black);
}
.product{
  padding: 3rem 2rem;
  background: #fff;
  outline: var(--outline);
  outline-offset: -1rem;
  text-align: center;
  box-shadow: var(--box-shadow);
}
.image{
  height: 15rem;
}
.product:hover{
  outline: var(--outline-hover);
  outline-offset: 0rem;
}
.product h3{
  font-size: 2.5rem;
  line-height: 1.8;
  color: var(--black);
}
.product p{
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--light-color);
  /* padding: 1rem 0; */
}
.features{
  background-color: gainsboro;
}
.price{
  font-size: 2rem;
  padding: .5rem 0;
  color: var(--light-color);
}
.stars i{
  font-size: 1.7rem;
  padding: .5rem 0;
  color: var(--orange);
}

/* Start Reviwe Code */
#review{
  padding: 5rem;
  background-color: rgb(226, 226, 226);
}
.review-container{
  display: flex;
  background-color: #fff;
}
.review-image{
  width: 50%;
}
.review-image img{
  display: block;
  height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.form-container{
  padding: 1rem;
  width: 50%;
  margin: auto;
}
.form-container input{
  display: block;
  width: 100%;
  color: #444;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 1rem  0;
  outline: none;
  font-weight: 500;
  margin-bottom: 1rem;
}
.form-container textarea{
  display: block;
  width: 100%;
  border: none;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}
.form-container h2{
  font-size: 3rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 1rem;
}
.food-container a{
  font-size: 1.2rem;
}
#footer h2{
  text-align: center;
  font-size: 2rem;
  padding: 3rem;
  font-weight: 500;
  color: #fff;
  background-color: rgb( 65,65, 65);
}

/* footer section */

footer {
  color: #fff;
}
ul {
  padding: 0rem;
}
ol, ul {
  margin-bottom: 0rem;
}

.social-icon {
  padding: 0;
  margin-bottom: 0rem;
  float: right;
}

.social-icon li {
  list-style: none;
  display: inline-block;
}
.social-icon li i {
  font-size: 2rem;
  color: #262725;
  border: solid 2px #ffffff;
  height: 4rem;
  width: 4rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 5rem;
  line-height: 4rem;
  margin-right: 1rem;
  transition: 1s;
  background: #fff;
}
.social-icon li i:hover {
  border: solid 2px #262725;
  color: #ffffff;
  background: #262725;
}

.phone-no i {
  position: relative;
  margin-right: 1rem;
  font-size: 4rem;
  /* top: 3rem; */
}
.phone-no a{
  position: relative;
  margin-right: 1rem;
  font-size: 2rem;
  top: 3rem;
  text-decoration: none;
}
.phone-no {
  margin-top: -2rem;
  text-align: right;
}
.footer-day-time {
  padding-bottom: 3rem;
  border-bottom: 2px solid #7a6f6f;
  padding-top: 0rem;
  margin-bottom: 4rem;
}
.footer-day-time ul li {
  display: inline;
  margin-right: 5rem;
}
.footer-day-time ul li:last-child {
  margin-right: 0rem;
}
.phone-no a {
  color: #fff;
  font-family: PlayfairDisplay-Black;
  font-size: 3rem;
  font-weight: bold;
}
.footer-top {
  background: var(--light-color);
  padding: 5rem 0 5rem;
}
.footer-top h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-top p {
  font-size: 1.4rem;
  line-height: 2;
}
footer p {
margin-bottom:0;
}
.address1 li {
  list-style: none;
  position: relative;
  padding: 0rem 0rem 2rem 4rem;
  line-height: 2rem;
}
.address1 li a {
  color: #fff;
  text-decoration: none;
}
ul.address1 i {
  width: 3rem;
  position: absolute;
  left: 0px;
  text-align: center;
  font-size: 3rem;
  top: 0;
}

ul.address1 i.fa-envelope {
  font-size: 3rem;
  top: 0rem;
}
footer ul.social-icon {
  float: left;
}
footer .social-icon li i:hover {
  background: var(--orange);
  border-color: #eee;
}

.footer-bottom {
  background: #eee;
  padding: 1rem 0rem;
}
.footer-bottom ul li {
  display: inline;
  margin-right: 2rem;
  font-size: 2rem;
}
.footer-bottom ul li a{
  color: var(--black);
  text-decoration: none;
}
.footer-bottom ul li a:hover{
  color: var(--orange);
}
.footer-bottom ul {
  float: right;
}

.footer-bottom ul li:last-child {
  margin-right: 0;
}
.copyright {
  font-size: 2rem;
}

@media(max-width:991px){
  html{
    font-size: 55%;
  }
  .header{
    padding: 2rem;
  }
  section{
    padding: 2rem;
  }
}
@media (max-width:768px){
  #menu-btn{
    display: inline-block;
  }
  .header .search-form{
    width: 90%;
  }
  .header .navbar{
    position: absolute;
    top: 110%; right: -110%;
    width: 30rem;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    background-color: #fff;
  }
  .header .navbar.active{
    right: 2rem;
    transition: .4s linear;
  }
  .header .navbar{
    font-size: 2rem;
    margin: 2rem 2.5rem;
    display: block;
  }

  .home{
    background-position: left;
  }
  .home .content h3{
    font-size: 4rem;
    /* padding-top: 9rem; */
  }
  .home .content p{
    font-size: 1.5rem;
  }
}  
@media(max-width:450px){
  html{
    font-size: 50%;
  }
  .heading{
    font-size: 2.5rem;
  }
}