.product-service-title {
  font-family: 'Nasalization', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #243757;
  /* Darker blue */
}

.product-service-container {
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  user-select: none;
  scrollbar-width: none;
}

.product-service-container::-webkit-scrollbar {
  display: none;
}

.product-servicer-item {
  background-color: white;
  padding: 13px;
  border-radius: 25px;
}

.product-servicer-item-name {
  font-family: 'Nasalization', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #01533E;
}

.product-servicer-item-img {
  max-width: 100%;
}

@media (min-width: 992px) {
  .product-servicer-item-name {
    font-size: 28px;
  }
  .product-servicer-item-box {
    height: 290px;
    background-color: #FAFBFB;
  }
  .product-servicer-item-img {
    max-width: 80%;
    transition: 0.5s;
  }
  
  .product-servicer-item:hover .product-servicer-item-img {
    max-width: 100%;
  }
}