#five {
    position: relative;
    height: auto;
    padding-top: 2rem;
    padding-bottom: 3rem;
}


.five-img {
    max-width: 400px;
  width: 30%;
  position: absolute;
  opacity: 1;
  transition: opacity 0.5s;
  padding: none;
}

#blobFive {
    right: -250px;
    top: -250px;
    /* Anfangs außerhalb des Sichtbereichs */
}

#rb3 {
    left: -250px;
    top: -250px;
    /* Anfangs außerhalb des Sichtbereichs */
}

.fiveCard {
    border-radius: 25px;
    background: var(--bg_sec-color);
    display: flex;
    padding: 2rem;
}


.masked-img {
    width: 100%;
  height: auto;
  display: block;
  mask-image: url("/gfx/image/blobs/blob4.svg");
  mask-repeat: no-repeat;

  -webkit-mask-image: url("/gfx/image/blobs/blob4.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;

  mask-position: center;
  mask-size: cover;
  -webkit-mask-size: cover;
  height: 300px;
  object-fit: cover;

}


.masked-img-two {
    width: 100%;
  height: auto;
  display: block;
  mask-image: url("/gfx/image/blobs/blob5.svg");
  mask-repeat: no-repeat;

  -webkit-mask-image: url("/gfx/image/blobs/blob5.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;

  mask-position: center;
  mask-size: cover;
  -webkit-mask-size: cover;
  height: 300px;
  object-fit: cover;

}

#chickThree1 {
    right: -250px;
    bottom: -250px;
    /* Anfangs außerhalb des Sichtbereichs */
    z-index: 1000;
}

#blobThree2 {
    left: -250px;
    bottom: -250px;
    /* Anfangs außerhalb des Sichtbereichs */
    z-index: 1000;

}





@media (max-width: 768px) {
    .five-img {
        width: 50%;
        /* Größere Breite auf mobilen Geräten */
    }

    #blobThree {
        right: -55px;
        top: -55px;
        /* Angepasste Position für mobile Geräte */
    }

    #rb3 {
        left: -55px;
        top: -55px;
        /* Angepasste Position für mobile Geräte */
    }

    .threeCard {
        padding: 0;
    }

    .masked-img {}
}