.videosBlockItem {
    cursor: pointer;
    border-radius: .4rem;
    overflow: hidden;
    position: relative;
}

.videosBlockItem .card-header img {
    filter: brightness(60%);
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.videosBlockItem:hover .card-header img {
    filter: brightness(65%);
}

.videosBlockItem .playbutton {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgb(80, 80, 80);
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.videosBlockItem:hover .playbutton {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.videosBlockItem .playbutton svg path {
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.videosBlockItem:hover .playbutton svg path {
    fill: var(--bs-fourth);
}

.vimeo-shadowbox {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .7);
    transition: all .5s ease;

}

.vimeo-shadowbox__video-wrapper {
    position: fixed;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 1400px;
}

.vimeo-shadowbox__video {
    position: relative;
    width: 1400px;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
}

.vimeo-shadowbox__video iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.vimeo-shadowbox__inner {
    padding: 0;
    background: transparent;
}

@media (max-width: 1440px) {
    .vimeo-shadowbox__video-wrapper {
        width: 800px;
    }
    .vimeo-shadowbox__video {
        width: 800px;
    }
}

@media (max-width: 575px) {
    .vimeo-shadowbox__video-wrapper {
        width: 100%;
    }
    .vimeo-shadowbox__video {
        width: 100%;
    }
}