@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.boxes-container {
  background-color: #f5f5f5;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  max-width: 100%;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  
}

.section-title {
  color: #173cad;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px !important;
  font-family: "Poppins", sans-serif;
  padding-top: 25px;
}

.cards-wrapper {
  display: block;
  justify-content: center;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  row-gap: 10px
  padding-bottom: 25px;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 220px;
  max-width: 100%;
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: transform 0.2s ease;
  min-height: 50px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px
  
}

.card img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  margin-top: 5px;
  margin-right: 25px;
  margin-left: 10px;
  object-fit: contain;
}

.card p {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: white;
  font-family: "Poppins", sans-serif;
  
}

@media (max-width: 600px) {
  .cards-wrapper {
    justify-content: center;
  }

  .card {
    max-width: 70%;
  }
}
