*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
 }
 body{
  background-color:#E3E6E6;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgb(56, 65, 41)),url(background.jpg);
  background-position: center;
 }
.row{
  width: 88%;
  margin: auto;
  
}
.searchInput{
  text-align: start;
  padding: 10px 0px;
  
}
.searchInput input{
  width: 30%;
  padding: 5px 5px;
  outline: none;
  border: none;
  border-radius: 0.2rem;
  border: 1px solid #414141;
  color: #3c444b;
 }
 ::placeholder{
  padding: 0px 3px;
 
 }
 .searchInput .inputBtn{
  width: 8%;
  padding:  3px;
  border-radius: 0.3rem;
  background-color: #FF004F;
  color: black ;
  cursor: pointer;
  border: none;
  }
  @media screen and (max-width:740px) {
    .searchInput input{
 width: 65%;}
 .searchInput .inputBtn{
  width: 25%;
 }
 .searchBtn{
  display: grid;
grid-template-columns: auto auto auto;
}}
 
.userInput:focus{
  outline: 1px solid #FF004F;
}
.searchBtn{
text-align: start;

}

.searchBtn .btn{
  width: 90px;
  max-width: 100%;
  padding: 3px 3px;
  border-radius: 1.8rem;
  margin-right: 5px;
  margin-top: 5px;
  border: 1px solid #FF004F;
  transition: 0.25s ease-in-out 0s;
 
}
.searchBtn .btn:hover{
background-color: #FF004F;
color: #E3E6E6;
cursor: pointer;
transition: 0.25s ease-in-out 0s;
}
.active{
  background-color: #FF004F;
  color: #E3E6E6;
  }
.imageCol{
  display: flex;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;

}
.card{
  background-color: whitesmoke;
  position: relative;
  padding: 5px 3px;
  border-radius: 0.5rem;
  flex-basis: 250px;
  margin:auto;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.card:hover{
  transform: translateY(10px);
}
.card::before{
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
display: block;
background: linear-gradient(to bottom, rgba(0,176,155,0.5), rgba(150,201,61,1));
z-index: 2;
transition: 0.5s all;
opacity: 0.3;
}
.card:hover::before{
  opacity: 0;
}


.hide{
  display: none;
}

img{
  width: 100%;
  border-radius: 0.2rem;
  padding: 10px;
}
.details{
  display: flex;
  justify-content: space-between;
  padding: 0px 5px;
  margin: 15px 0px;
}
h4{
  color: #242D3D;
  font-family: 'roboto';
  font-size: 20px;
  font-weight: 500;
}
h6{
  color: #828891;
  font-family: 'roboto';
  line-height: 1.2rem;
}
.brand{
  padding: 10px 5px;
}
h2{color: #242D3D;
font-family: 'roboto';
font-weight: 400;

}
h3{
  color: #242D3D;
  font-family: 'roboto';
  font-weight: 400;
  font-size: 13px;
  line-height: 1.7rem;
}
.underline{
  width: 98%;
  height: 1.4px;
  background-color: #FF004F;
}

