/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 03 2026 | 06:12:13 */
.hover-image {
    position: relative;
    display: inline-block;
}

.hover-image::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 140px;

    background: url("wp-content/uploads/2026/09/Bildschirmfoto-2026-08-26-um-15.12.04.jpg") center/cover no-repeat;

    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-15px);

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;

    z-index: 1000;
}

.hover-image:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-25px);
}