.title-x {
  position: relative;
  padding: 2rem 1rem;
  overflow: hidden;
  text-align: center;
}

.title-x h3 {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
	color: #5cb6c9;
  z-index: 2;
  margin-bottom: 0.5rem;
}

.title-x p {
  position: relative;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  /* color: #555; */
  z-index: 2;
  margin-bottom: 0;
}

/* Background text */
.title-x .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 18vw, 9rem);
  font-weight: 800;
  color: #000;
  opacity: 0.05;
  line-height: 1;
  white-space: nowrap;
  z-index: 1;
  text-transform: uppercase;
  pointer-events: none;
}
@media (max-width: 948px) {

.title-x .bg-text {
    
    font-size: clamp(4rem, 11vw, 9rem); 
}}