.solutions-card-widget {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  align-self: stretch;
  gap: 60px;
}

.solutions-card {
  display: flex;
  padding: 28px 20px;
  flex-direction: column;
  align-items: center;
}
.solutions-card img{
  max-height: 115px;
  width: auto;
  border-radius: 0;
  margin-bottom: 25px;
}
.solutions-card h3{
  margin-bottom: 4px;
}
.solutions-card p {
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 1480px) {
  .solutions-card h3{
    text-align: center;
  }
}
@media only screen and (max-width:1200px) {
  .solutions-card-widget {
    gap: 20px;
  }
}
@media only screen and (max-width: 959px) {

  .solutions-card h3{
    font-size: 24px;
    letter-spacing: 0.72px;
    margin-bottom: 0;
  }
  .solutions-card-widget{
    justify-content: center;
    flex-wrap: wrap;
  }
  .solutions-card {
    gap: 5px;
  	width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 959px) {
  .solutions-card {
    gap: 5px;
  	width: calc(100% - 30px);
  }
}
