/* paragraph slide */
.paragraph--type--slide .slide_wrapper {
  position: relative;
}

.paragraph--type--slide .slide_wrapper .slide_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1.75rem;
}

/* paragraph parallax */
.paragraph.parallax {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 var(--negativeMarginX);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.paragraph--type--parallax .field_text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.75rem 1.5rem;
  color: var(--white);
}

@media (min-width: 992px) {
  .paragraph.parallax {
    background-attachment: fixed;
  }
}
