.block-video{
    margin: 5rem 0;
}

.block-video__wrapper{
    width: 100%;
    height: 100%;
}

.block-video__iframe{
    border: solid 1px #cecece;
    border-radius: 1rem;
}

.block-video__thumbnail{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    border-radius: 1rem;
    z-index: 2;
    transition: all 400ms ease;
}

.block-video__thumbnail:hover{
    cursor: pointer;
}

.block-video__thumbnail:hover .block-video__play-button{
    cursor: pointer;
    transform: scale(1.4);
    background-color: var(--primary-darker-color);
}

.block-video__play-button--hidden,
.block-video__thumbnail--hidden{
    opacity: 0;
    pointer-events: none;
}

.block-video__play-button{
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    position: absolute;
    z-index: 3;
    border-radius: 100%;
    top: calc(50% - 2.5rem);
    left: calc(50% - 2.5rem);
    transition: all 400ms ease;
}

.block-video__play-button svg{
    position: absolute;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    fill: white;
    width: 2rem;
    height: 2rem;
}