.why-us {
  width: 100%;
  background-color: #f2f2f2;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
}

.why-us h2 {
  color: #032973;
  margin: 10px;
  text-align: center;
}
.why-us-contentCards{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.why-us-card{
  display: flex;
  width: 500px;
  height: 100px;
  justify-content: center;
  align-items: center;
  background-color: white;
  margin: 5px;
  padding: 50px 20px 50px 20px;
  border-radius: 10px;
}
.why-us-card img{
  width: 80px;
  height: 80px;
}
.why-us-card div{
  margin-left: 10px;
}
.why-us-card div h3{}
.why-us-card div p{}
.why-us-card:hover{
  box-shadow: 0px 0px 20px #032973;
}
@media (max-width: 425px) {
  .why-us-card{
    height: 130px;
  }
}
  