:root {
  --bg-color: #fdfdfd;
  --text-color: #333;
  --main-color: #000D9A;
  --white-color: #fff;
  --shadow-color: rgba(0, 0, 0, .2);
}

main {
  padding: 150px 7% 50px 7%;
  background-color: var(--bg-color);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

 

.bikeprice-container{
  width: 100%;
  height: auto;
  max-height: 500px;
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}

.bikeprice-container .bikeprice-img{
  width: 100%;
  max-width: 700px;
  height: 500px;
  border-radius: 20px;
}

.bikeprice-container .bikeprice-form{
  width: 100%;
    max-width: 500px;
height: 500px;
background-color: bisque;
border-radius: 20px;
padding: 10px;
}

.bikeprice-form form{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pickUpTime{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

input.locInput{
  width: 100%;
  padding: 10px 10px;
  border-radius: 5px;
}

input:focus{
  border: 3px solid var(--main-color);
}
input{
  font-size: 15px;
}

.pickUpTime .pickUp{
  width: 70%;
  padding: 20px 10px;
    border-radius: 10px;
  
}
.pickUpTime .time{
  padding: 10px 10px;
    border-radius: 5px;
}

.bikeprice-form form button{
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 600;
  transition: .3s ease-in;
  margin-top: 25px;
}

.bikeprice-form form button:hover{
  background-color: rgb(95, 95, 95);
}

.bikeprice-form form label{
  font-size: 20px;
  color: black;
  width: 100%;
  text-align: start;
  font-weight: 500;
  margin:20px 0 10px 5px;
}

.timeCalc{
  display: flex;
  flex-direction: row;
  justify-content: start;
}



#hours, #money{
  padding: 10px 10px;
    border-radius: 5px;
}

section.bike-model, section.specification{
  margin-top: 50px;
 width: 100%;
}

section h1{
  font-size: 25px;
}
section p{
  font-size: 15px;
  width: 100%;
    max-width: 600px;
}

.distribute{
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 600px;
  justify-content: space-between;
}


.give-space{
  padding-top: 500px;
}