:root {
  --bg-color: #fdfdfd;
  --text-color: #333;
  --main-color: #000D9A;
  --white-color: #fff;
  --shadow-color: rgba(0, 0, 0, .2);
}

section.heroBike {
  padding: 8.5rem 0 0 0;
}


.heroBike img{
  width: 100%;
  height: auto;
  position: relative;
}

.heroBike .heroBikeFilter{
  position: absolute;
 max-width: 800px;
 width: 100%;
  background-color: #fff;
  height: 100px;
  border-radius: 10px;
 bottom: 180px;
  left:350px;
  z-index: 99;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Base styles for all devices */


@media (max-width: 380px) {}

@media (max-width: 600px) {}

@media (max-width: 1024px) {}

@media (max-width: 1440px) {}

@media (max-width: 1870px) {}

.filterContainer {
  width: 600px;
  max-width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  margin: 20px 100px;
  flex-wrap: wrap;
}

.searchBar {
  width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}

.bx-search-alt-2{
  color: #000;
}

input:focus{
  background: transparent;
  outline: none;
}



.priceFilter {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main {
  padding: 100px 7% 50px 7%;
  background-color: var(--bg-color);
}

.bikeRentCard-container{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
gap: 20px;
}

.bikeRentCard{
  width: 300px;
  height: 415px;
  border: 1px solid var(--text-color);
  border-radius: 20px;
  padding: 5px;
  transition: .3s ease-in-out;
}

.bikeRentCard:hover{
  transform: scale(1.05);
  box-shadow:
      3px 3px 5px var(--text-color),
      -3px -3px 5px rgba(255, 255, 255, 0.2);
}

.bikeRentCard .cardImg{
  width: 100%;
  height: 200px;
  border-radius: 15px;
}
.bikeRentCard .cardImg img{
  width: 100%;
  height: 200px;
  border-radius: 10px;
  background-color: #ccc;
}

.bikeRentCard .cardHead{
  font-size: 25px;
  color: var(--text-color);
  font-weight: bold;
  margin-top: 5px;
}
.bikeRentCard .card-content{
  display: flex;
  justify-content: space-around;
  color: var(--text-color);
  font-size: 15px;
  margin-top: 15px;
}

.bikeRentCard .card-content .card-content-left, .card-content-right{
  flex-direction: column;
}

.bikeRentCard .bikeBook{
  display: flex;
    justify-content: space-around;
    margin: 15px 0;
}

.bikeBook .bikeBook-price{
  flex-direction: column;
}

.bikeBook .bikeBook-price p:first-child{
font-size: 15px;
color: var(--text-color);
}
.bikeBook .bikeBook-price p:last-child{
font-size: 25px;
color: var(--text-color);
font-weight: 800;
}

.bikeBook .bikeBook-btn{
  background-color: var(--main-color);
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: .2s ease-in-out;
  height: 30px;
}
.bikeBook .bikeBook-btn:hover{
  background-color: gray;
  box-shadow:
      3px 3px 5px rgba(0, 0, 0, 0.7),
      -3px -3px 5px rgba(255, 255, 255, 0.2);

      
}