*{
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.nav-bar{
  display: flex;
  justify-content: space-around;
  background: #8A2387;
  color: #77ee95;
  height: 10vh;
} 

.title{
  margin-top: 12px;
  font-size: 25px;
}

.nav-pro{
  margin-top: 10px;
}

.nav-pro ul{
  display: flex;
}

.nav-pro ul li{
  list-style: none;
  margin: 10px 17px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 530;
}

.nav-pro ul li a{
  color: white;
  text-decoration: none;
}

.nav-inp{
  margin-top: 15px;
  width: 300px;
}

.nav-inp input{
  border: 0;
  outline: 0;
  height: 30px;
  border-radius: 5px;
  width: 300px;
  padding: 10px;
}

.nav-cart{
  margin-top: 20px;
}

.car{
  width: 65px;
  height: 25px;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  background: #77ee95;
  color: #5a00c1;
  font-size: 16px;
  font-weight: 300;
}

.car:hover{
  background: #5a00c1;
  color: #77ee95;
  transition: 0.7s;
}

/*Carosel*/

.caraosel{
  background: linear-gradient(to right, #654ea3, #eaafc8);
}

.container{
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 90vh;
}

.frames{
  width: 1100px;
  height: 550px;
  box-shadow: -1px 1px 10px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* Product Section */

.product{
  background: linear-gradient(to right, #8A2387, #F27121);
}

.pro-serv{
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.pro-serv h2{
  text-align: center;
}

.pro-serv ul{
  display: flex;
  list-style: none;
  
}

.pro-serv ul li{
  margin: 20px;
  justify-content: space-around;
}

/* Footer Section */
.footer{
  width: 100%;
  height: 40vh;
  background: black;
  color: white;
  padding-top: 10px;
}

.info-ftr{
  text-align: center;
}

.info-ftr a{
  text-decoration: none;
  color: white;
}

.about{
  display: flex;
  margin: 50px;
  justify-content: space-around;
}

.abt-in{
 margin: 20px;
}

.abt-in p{
 margin-top: 10px;
}