/* Custom Styles */
.hero {
    background-color: #595b5e55;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    color: #333;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
}
.hero a{
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-products {
    padding: 50px 0;
}

.featured-products h2 {
    text-align: center;
}

.footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
}
.container{
    background-color: #7e7d7d;
    margin-top: 120px;
}
.carousel-item img{
    height: 800px;
    width: fit-content;
}
.featured-products{
  width: 100%;
  height: 50px;
}

h2{
  font-size: 45px;
  font-weight: 900;
}
/* SECTION-2 */


#main-container{
  margin-top: 60px;
  background-color: #9e9e9e;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#title{
  font-size: 45px;
  font-weight: 900;
}

#main-obj{
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline;
}

#box1{
  height: 500px;
  width: 400px;
  border: 2px solid black;
  background-color: #f1f1f1;
  display: grid;
  margin-left: 5%;
  margin-bottom: 3%;
}

#boximg{
  margin-left: 4%;
  margin-top: 5%;
  transition-duration: 1s;
}
#boximg:hover{
  transform: scale(1.1);
}

.t1{
  margin-left: 19%;
  font-size:x-large;
  font-weight: 800;
}

.t2{
  margin-left: 24%;
  font-size: large;
  font-weight: 800;
}

.t3{
  margin-left: 15%;
  font-size: large;
  font-weight: 800;
}

.price{
  background-color: rgb(55, 55, 55);
  height: 40px;
  width: 180px;
  margin-left: 29%;
  display: flex;
  justify-content: center ;
  align-items: center;
  margin-bottom: 30%;
}
.price:hover{
  cursor: pointer;
  background-color: #969696;
  box-shadow: 2px 2px 6px 2px grey;
}

.price > span{
  color: rgb(255, 255, 255);
  
}

@media only screen and (min-width: 768px) {
  /* Tablet */
  #box1 {
  display: inline-block;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 992px) {
  /* Laptop */
  #box1{
      display: inline-block;
    grid-template-columns: repeat(5, 1fr);
  }
}


















