h2 {
  text-transform: capitalize;
  color: #fb8500;
}
.vehicle {
  margin: 20px 0;
}

.img-text {
  padding: 30px 10px;
  border: 1px solid rgb(252, 163, 17);
}
.img-text h3 {
  text-transform: capitalize;
}
.img-text span {
  display: block;
  padding: 10px 0;
}
.img-text span i {
  font-weight: bold;
}
.image-container {
  position: relative;
  width: 100%;
  height: auto;
}
.img1 {
  width: 100%;
  height: auto;
}
.img1:hover {
  cursor: pointer;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  overflow: hidden;
  width: 100%;
  height: auto;
  transform: scale(0);
  transition: 0.5s ease-in;
}
.image-container:hover .overlay {
  transform: scale(1);
}
.img2 {
  width: 100%;
  height: auto;
  text-align: center;
}
.img2:hover {
  cursor: pointer;
}
