.inlineb {
display: inline-block;
}

.problem-section {
  text-align: center;
  padding: 80px 20px;
}

.problem-h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 70px;
}

.problem-h2-sub {
  font-weight: 400;
  margin-bottom: 15px;
  color: #004296;
}

.problem-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-box {
  display: flex;
justify-content: center;
align-items: center;
  border: 2px solid #004296;
  position: relative;
  padding: 30px 20px;
  text-align: left;
  width: 28%;
  max-width: 320px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15), 0 30px 30px -30px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}

.problem-img {
  position: relative;
margin: auto 0 -30px 0;
  width: 70px;
}

.problem-number {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: white;
background: #004296;
font-size: 14px;
border-radius: 30px;
width: fit-content;
padding: 2px 20px;
margin-bottom: 10px;
}

.problem-p {
  font-size: 16px;
  margin: 0;
  padding-left: 3px;
}

@media screen and (max-width: 1020px) {
  .problem-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

@media screen and (max-width: 991px) {
  .problem-wrapper {
    gap: 30px;
  }
  .problem-box {
    width: 100%;
  }

}

@media screen and (max-width: 768px) {
  .problem-wrapper {
    gap: 25px;
  }
  .problem-number {
    font-size: 13px;
  }

  .problem-p {
    font-size: 13px;
  }
  .problem-h2 {
    font-size: 22px;
    margin-bottom: 35px;
  }
  .problem-h2-sub {
    margin-bottom: 10px;
  }
}
