@charset "utf-8";
/* CSS Document */

/*Section Box 3*/
.secEv-boxes-3{
  width: 100%;
}
.evBoxes-3 {
  width: 98%;
  margin: 0 auto;
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
  grid-row-gap: 2rem;
  grid-column-gap: 2rem;
  position: relative;
  z-index: 100;
}
.evBox-3 {
  width: 100%;
    height: 60vh;
  background-color: #000;
  box-shadow: 4px 4px 4px #aaa;
  border-radius: 2px;
  border-bottom: 6px solid black;
  position: relative;

}
.evBox-3-img {
  height: 40%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  
  /*background-color: red;*/
  overflow: hidden;
}
.evBox-3-img img {
  object-fit: cover;
  height: 220%;
  width: 100%;
}
.evBox-3-Desc {
  width: 80%;
  position: absolute;
  top: 10rem;
  left: 0;
  margin-left: 3.5rem;
  margin-top: -1rem;
}
.evBox-3-Desc h3 {
  display: inline-block;
  height: 4rem;
  font-size: 2rem;
  background-color: white;
  color: black;
  padding: 0.8rem;
  margin-top: 15rem;
}
.evBox-3-Desc h4 {
  display: inline-block;
  font-size: 1.5rem;
  color: white;
  margin-top: 4rem;
  font-weight: 400;
}
.evBox-3-Desc p {
  margin-top: 2rem;
  font-size: 1.8rem;
  color: orangered;
}