.video-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    height: 510px;
    margin-left: auto;
    margin-right: 2rem;
}
.thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    background-color: rgba(33, 33, 33, 0.8);
    border-radius: 12%;
    transform: translate(-50%, -50%);
    border: none;
    cursor: pointer;
}

.play-button:before {
    content: "";
    display: block;
    margin-left: 40%;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent white;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


@media (min-width: 992px){
.video-container {
    max-width: 350px;
    max-height: 516px;
    margin-left: auto;
    margin-right: 4rem;
}
}

.video-width-xl {
    max-width: 100%;
    height: 90%;
    margin-left: auto;
    margin-right: 0rem;
}