/* Анимация плавного движения вверх-вниз */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-image-wrapper img {
    animation: floating 3s ease-in-out infinite;
}




.t814__blockimg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -21px;
}