
section.text-block {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
section.text-block .bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.text-block .container {
  z-index: 1;
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 992px) {
  section.text-block .container {
    gap: 4rem;
  }
}
section.text-block .container.row {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  section.text-block .container.row {
    flex-direction: column;
    gap: 2rem;
  }
}
section.text-block .container.order-reverse {
  flex-direction: row-reverse;
}
section.text-block .container .wrapper-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
section.text-block .container .wrapper-content .wrapper-buttons {
  margin-top: 1rem;
}