.pricing-service-boxes.service-boxes {
  display: flex;
  gap: 30px 10px;
  flex-wrap: wrap;
  padding:0px;
  justify-content: space-between;
}
.pricing-service-boxes .service-box {
  background: white;
  padding: 17px 25px;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
  border-radius: 17px;
  flex:0 0 32%;
  max-width: 32%;
}
.service-box h4 {
  font-family: futura heavy;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  padding: 5px 0px 10px 0px;
  color: #006CFF;
}
.service-box p {
  font-family: futura book;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #434343;
}
section.services-boxes-section {
  padding: 60px 10px;
}
@media only screen and (max-width: 980px) {
  .service-boxes {
    justify-content: center;
    gap: 20px;
  }
  .service-box {
    width: 45%;
  }
  .pricing-service-boxes .service-box {
  flex:0 0 45%
  max-width: 45%;
}
  .pricing-service-boxes.service-boxes{
    justify-content:center
  }
}
@media only screen and (max-width: 768px) {
  .service-box {
    width: 90%;
  }
  
  .pricing-service-boxes .service-box {
  flex:0 0 100%;
  max-width: 100%;
}
}