.parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.parallax:after {
  content: "";
  position: absolute;
  background-image: url('../../assets/img/Design-csik.png?h=64e9ecfa2bc61018f91ef39a45289a79');
  width: 100%;
  height: 45px;
  background-repeat: repeat-x;
  bottom: 0;
  z-index: 1;
}

.parallax-background {
  width: 0px;
  height: auto;
  /*display: none;*/
  filter: brightness(50%);
  margin-top: -160px;
}

.parallax-background, .parallax-placeholder {
  filter: brightness(50%);
}

.parallax-placeholder {
  position: absolute;
  z-index: -200;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 30%;
  /*background-attachment: fixed;*/
}

.parallax-content {
  /*min-height: 50vh;*/
  height: 50vh;
  color: white;
  padding: 2em 1rem;
}

.parallax-content p {
  font-size: 1.5em;
  text-align: center;
}

