.play-button-promo {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    cursor: pointer;
    background: url('../assets/icons/play.svg') no-repeat center center;
    background-size: 30px auto;
    border-radius: 20px;
    transition: ease-in-out 0.2s;
  }

.play-button-promo:hover {
    background: url('../assets/icons/play.svg') no-repeat center center;
    background-size: 50px auto;
    background-color: #f2578d60;
}

.video-block {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f2578d60;
    backdrop-filter: blur(30px);
}

.hero-video {
    width: 70%;
    height: auto;
}

@media (max-width: 800px) {
    .hero-video {
        width: 100%;
        height: auto;
    }
}

.close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 60px;
    height: 60px;
    background: url('../assets/icons/close.svg') center center no-repeat;
    background-size: 30px 30px;
    cursor: pointer;
}