* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
header {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
}
header > .headerImage {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  z-index: -2;
}
.headerBanner {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.headerParagraph {
  font-size: 4rem;
}
.headerSearchDiv {
  margin-top: 20px;
  display: block;
  margin-left: 10px;
  min-width: 60%;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}
.headerSearchDiv:hover,
.headerSearchDiv:has(input:focus) {
  background-color: rgba(255, 255, 255, 0.7);
}
.headerSerach {
  min-width: calc(100% - 45px);
  height: 40px;
  background: none;
  border: none;
  position: relative;
  left: 10px;
  top: -4px;
}
.headerSearchDiv > button {
  position: relative;
  width: 40px;
  height: 40px;
  background: no-repeat;
  /* background: none; */
  border-radius: 50%;
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer;
}
/***************************************************************************/
.vehicles {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 20px;
  grid-row-gap: 50px;
  /* margin-top: 50px; */
  width: 100%;
  /* height: 100%; */
  justify-content: center;
}
.productCard {
  cursor: pointer;
  /* width: 23vw; */
  min-width: 200px;
  height: 60vh;
  background-color: rgb(224, 224, 202);
  border-radius: 20px;
  margin: 50px 25px;
}
.productHead {
  font-size: 1.6em;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 100%;
  height: 15%;
}
.productImgDiv {
  position: relative;
  width: 100%;
  height: 70%;
  font-size: 1em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.productMainImage {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 1000ms;
}
.productMainImage:hover {
  opacity: 0;
}
.productDescription {
  padding: 5px;
}
.productPriceDiv {
  font-size: 1.6rem;
  font-weight: bold;
  width: 100%;
  height: 40px;
  color: #3f3f3f;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: center;
}
.productPrice::after {
  color: #3f3f3f;
  content: "€";
}
.productPriceNormal {
  width: 90%;
  color: #d42828;
  text-decoration: line-through;
  text-align: end;
  font-size: 1.2rem;
}
.productPriceDiscountPercent {
  color: #6fe222;
  font-size: 1.4rem;
  margin: 5px;
}
.productPriceQualtity {
  color: #52b411;
  width: 90%;
  text-align: start;
}

@media screen and (max-width: 400px) {
  .products {
    grid-template-columns: auto;
  }
  .productCard {
    cursor: pointer;
    /* width: 90vw; */
    min-width: 200px;
    height: 80vh;
    background-color: rgb(224, 224, 202);
    border-radius: 20px;
    margin: 50px 25px;
  }
}
@media screen and (max-width: 600px) {
  .products {
    grid-template-columns: auto auto;
  }
  .productCard {
    cursor: pointer;
    /* width: 45vw; */
    min-width: 200px;
    height: 80vh;
    background-color: rgb(224, 224, 202);
    border-radius: 20px;
    margin: 50px 25px;
  }
}
@media screen and (max-width: 1024px) {
  .products {
    grid-template-columns: auto auto auto;
  }
  .productCard {
    cursor: pointer;
    /* width: 30vw; */
    min-width: 200px;
    height: 60vh;
    background-color: rgb(224, 224, 202);
    border-radius: 20px;
    margin: 50px 25px;
  }
}
