.wsfloat{
    position:fixed;
    width:60px;
    height:60px;
    bottom:100px;
    right:30px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
font-size:30px;
    box-shadow: 2px 2px 3px #999;
z-index:100;
}

.my-float{
    margin-top:16px;
}

.video-background {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: url('../img/parallaxbg.webp') no-repeat;
    background-size: cover;
    object-fit: contain;
    max-width: 100%;
}


.content {
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    #bg-video {
        max-width: none; 
    }
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #0dcaf0;
    color: #fff;
    text-align: center;
    padding: 10px;
    display: none;
    z-index: 10;
}
#cookie-banner button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
}

.parallax {
    background-image: url('../img/parallaxbg.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.scroll-image {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-image.visible {
    opacity: 1;
    transform: translateY(0);
}