/** Shopify CDN: Minification failed

Line 97:0 Unexpected "}"

**/
.problem .heading{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.problem .heading h2{
  margin: 0; 
}

.problem .problem-wrap{
  max-width: 1120px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.problem .problem-wrap-inner{
  border-radius: 20px;
  padding: 38px 34px 34px; 
}
.problem .problem-wrap-inner .icon-box{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.problem .problem-wrap-inner .icon-box img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.problem .problem-wrap-inner h3{
  margin: 0; 
}
.problem .problem-wrap-inner p{
  margin: 18px 0 0; 
}
.problem .problem-info{
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
  border-radius: 18px;
  padding: 28px 24px;
}
.problem .problem-info h4{
  margin: 0; 
}
.problem .problem-info p{
  margin: 12px 0 0; 
}

@media(max-width:991px){
  .problem .problem-wrap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .problem .problem-wrap-inner{ 
    padding: 30px 24px;
  }
}

@media(max-width:767px){ 
  .problem .problem-wrap{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .problem .problem-wrap-inner{
    min-height: auto;
    padding: 24px 20px;
    border-radius: 16px;
  }
  .problem .problem-wrap-inner .icon-box{
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  .problem .problem-wrap-inner .icon-box img{
    width: 30px;
    height: 30px;
  } 
  }
  .problem .problem-wrap-inner p{
    margin-top: 14px; 
  }
  .problem .problem-info{
    margin-top: 28px;
    padding: 22px 18px;
    border-radius: 16px;
  } 
}