.z-text {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 100px;
  box-sizing: border-box;
  overflow: hidden;
  border-style: solid;
  opacity: 0;
  visibility: hidden;
}
.z-text i.fa-solid,
.z-text i.fa-regular,
.z-text i.fa-brands {
  font-family: "Font Awesome 6 Free" !important;
  padding-left: 5px;
  padding-right: 5px;
}

.z-text i.fa-solid {
  font-weight: 900 !important;
}

.z-text i.fa-regular {
  font-weight: 400 !important;
}
.z-text-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
}
.z-text-title,
.z-text-description {
  position: relative;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  .z-text {
    height: auto;
    min-height: 250px;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .z-text-bg {
    background-size: cover;
    background-position: center;
  }
}